aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Langridge <sil@kryogenix.org>2019-06-10 00:22:39 +0100
committerStuart Langridge <sil@kryogenix.org>2019-06-10 00:22:39 +0100
commit18f701a34dd5ca437715de9675bf2f3eab848cce (patch)
tree84df44f895d3793afe2018e93f302ae23aeebb0d
parentdata: Add magnus-autostart.desktop. (diff)
downloadmagnus-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-xmagnus1
1 files changed, 1 insertions, 0 deletions
diff --git a/magnus b/magnus
index d6bcb4d..5975a12 100755
--- a/magnus
+++ b/magnus
@@ -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
bgstack15