From eaaac416f8ae5e100c88245ed122523b97ddc184 Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Wed, 1 Feb 2017 08:53:31 +0100 Subject: [PATCH] Fix the global hide window binding to work with shifted keys --- terminatorlib/window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/window.py b/terminatorlib/window.py index 9ca7602c..ac8637a6 100755 --- a/terminatorlib/window.py +++ b/terminatorlib/window.py @@ -127,7 +127,7 @@ class Window(Container, Gtk.Window): if display_manager() == 'X11': try: self.hidebound = Keybinder.bind( - self.config['keybindings']['hide_window'], + self.config['keybindings']['hide_window'].replace('',''), self.on_hide_window) except (KeyError, NameError): pass