Skip to content

Commit bda58ec

Browse files
committed
keybindings: Ignore shift-f10 (alternate menu popup shortcut).
Fixes #462
1 parent 96e5395 commit bda58ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/keybindings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def maybe_handle_event(self, event):
104104
self.manager.cancel_unlocking()
105105
return True
106106

107-
if event.keyval == Gdk.KEY_Menu:
107+
if event.keyval in (Gdk.KEY_Menu, Gdk.KEY_F10):
108108
return True
109109

110110
if status.Awake:

0 commit comments

Comments
 (0)