Skip to content

Commit

Permalink
keybindings: Ignore shift-f10 (alternate menu popup shortcut).
Browse files Browse the repository at this point in the history
Fixes #462
  • Loading branch information
mtwebster committed Sep 23, 2024
1 parent 96e5395 commit bda58ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/keybindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def maybe_handle_event(self, event):
self.manager.cancel_unlocking()
return True

if event.keyval == Gdk.KEY_Menu:
if event.keyval in (Gdk.KEY_Menu, Gdk.KEY_F10):
return True

if status.Awake:
Expand Down

0 comments on commit bda58ec

Please sign in to comment.