diff options
Diffstat (limited to 'src/keys.cc')
-rw-r--r-- | src/keys.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/keys.cc b/src/keys.cc index a512b8ea..7346706e 100644 --- a/src/keys.cc +++ b/src/keys.cc @@ -2,6 +2,7 @@ * Key parser * * Copyright (C) 2009 Jorge Arellano Cid <jcid@dillo.org> + * Copyright (C) 2024 Rodrigo Arias Mallo <rodarima@gmail.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -136,6 +137,10 @@ static const KeyBinding_t default_keys[] = { { "right" , KEYS_RIGHT , 0 , FL_Right }, { "top" , KEYS_TOP , 0 , FL_Home }, { "bottom" , KEYS_BOTTOM , 0 , FL_End }, + { "zoom-in" , KEYS_ZOOM_IN , FL_CTRL , '+' }, + { "zoom-in" , KEYS_ZOOM_IN , FL_CTRL , '=' /* US + */ }, + { "zoom-out" , KEYS_ZOOM_OUT , FL_CTRL , '-' }, + { "zoom-reset" , KEYS_ZOOM_RESET , FL_CTRL , '0' }, }; static Dlist *bindings; |