diff options
author | Stuart Langridge <sil@kryogenix.org> | 2019-06-10 00:22:39 +0100 |
---|---|---|
committer | Stuart Langridge <sil@kryogenix.org> | 2019-06-10 00:22:39 +0100 |
commit | 18f701a34dd5ca437715de9675bf2f3eab848cce (patch) | |
tree | 84df44f895d3793afe2018e93f302ae23aeebb0d | |
parent | data: Add magnus-autostart.desktop. (diff) | |
download | magnus-18f701a34dd5ca437715de9675bf2f3eab848cce.tar.gz magnus-18f701a34dd5ca437715de9675bf2f3eab848cce.tar.bz2 magnus-18f701a34dd5ca437715de9675bf2f3eab848cce.zip |
Bind both super-alt-equals and super-alt-plus as zoom-in keys
-rwxr-xr-x | magnus | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -103,6 +103,7 @@ class Main(object): Keybinder.init() if Keybinder.supported(): Keybinder.bind("<Alt><Super>plus", self.zoom_in, zoom) + Keybinder.bind("<Alt><Super>equal", self.zoom_in, zoom) Keybinder.bind("<Alt><Super>minus", self.zoom_out, zoom) # and, go |