Fix the global hide window binding to work with shifted keys
This commit is contained in:
parent
1f2ec6df18
commit
eaaac416f8
|
@ -127,7 +127,7 @@ class Window(Container, Gtk.Window):
|
||||||
if display_manager() == 'X11':
|
if display_manager() == 'X11':
|
||||||
try:
|
try:
|
||||||
self.hidebound = Keybinder.bind(
|
self.hidebound = Keybinder.bind(
|
||||||
self.config['keybindings']['hide_window'],
|
self.config['keybindings']['hide_window'].replace('<Shift>',''),
|
||||||
self.on_hide_window)
|
self.on_hide_window)
|
||||||
except (KeyError, NameError):
|
except (KeyError, NameError):
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue