diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-12-09 21:54:05 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-12-09 21:54:05 +0200 |
commit | 9f33d1694878746f181d5d36090f34dbfeba7183 (patch) | |
tree | 784a36dfe73883331caeeb3e2d85fe9e024d0dd9 /src/ui/window.c | |
parent | f0e555b97f6adffbd8288ca3208934547a93af42 (diff) |
macOS: Update shortcuts in menu items
When keybindings are changed the menus will need updating.
Diffstat (limited to 'src/ui/window.c')
-rw-r--r-- | src/ui/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.c b/src/ui/window.c index 867f535d..6199c4e2 100644 --- a/src/ui/window.c +++ b/src/ui/window.c | |||
@@ -773,7 +773,7 @@ iBool processEvent_Window(iWindow *d, const SDL_Event *ev) { | |||
773 | /* Suspiciously close to when input focus was received. For example under openbox, | 773 | /* Suspiciously close to when input focus was received. For example under openbox, |
774 | closing xterm with Ctrl+D will cause the keydown event to "spill" over to us. | 774 | closing xterm with Ctrl+D will cause the keydown event to "spill" over to us. |
775 | As a workaround, ignore these events. */ | 775 | As a workaround, ignore these events. */ |
776 | return iFalse; | 776 | return iTrue; /* won't go to bindings, either */ |
777 | } | 777 | } |
778 | /* Map mouse pointer coordinate to our coordinate system. */ | 778 | /* Map mouse pointer coordinate to our coordinate system. */ |
779 | if (event.type == SDL_MOUSEMOTION) { | 779 | if (event.type == SDL_MOUSEMOTION) { |