From 18f701a34dd5ca437715de9675bf2f3eab848cce Mon Sep 17 00:00:00 2001 From: Stuart Langridge Date: Mon, 10 Jun 2019 00:22:39 +0100 Subject: Bind both super-alt-equals and super-alt-plus as zoom-in keys --- magnus | 1 + 1 file changed, 1 insertion(+) 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("plus", self.zoom_in, zoom) + Keybinder.bind("equal", self.zoom_in, zoom) Keybinder.bind("minus", self.zoom_out, zoom) # and, go -- cgit