diff options
author | Havoc Pennington <hp@pobox.com> | 2002-08-10 15:55:18 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2002-08-10 15:55:18 +0000 |
commit | 4c3a20c3f2ebf5b709ed43098cfedce3171fc381 (patch) | |
tree | 0a64f1197ed6d26cf1daa75f3777c213136ccb5b /src/keybindings.c | |
parent | b78ad2e12dfa89bb524a7cc5672143f4f56232a7 (diff) | |
download | metacity-4c3a20c3f2ebf5b709ed43098cfedce3171fc381.tar.gz metacity-4c3a20c3f2ebf5b709ed43098cfedce3171fc381.tar.bz2 |
filter out key events that happen on popup menus etc.
2002-08-10 Havoc Pennington <hp@pobox.com>
* src/keybindings.c (meta_display_process_key_event): filter out
key events that happen on popup menus etc.
* src/ui.c (meta_ui_window_is_widget): new function to check
whether a window belongs to a GtkWidget such as the popup menu
* src/prefs.c (change_notify): put in a no-op line for AIX
compiler, #84252
Diffstat (limited to 'src/keybindings.c')
-rw-r--r-- | src/keybindings.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/keybindings.c b/src/keybindings.c index aecb448..b128fdc 100644 --- a/src/keybindings.c +++ b/src/keybindings.c @@ -1276,8 +1276,13 @@ meta_display_process_key_event (MetaDisplay *display, if (screen == NULL) return; /* event window is destroyed */ + + /* ignore key events on popup menus and such. */ + if (window == NULL && + meta_ui_window_is_widget (screen->ui, event->xany.window)) + return; - /* window may be NULL */ + /* window may be NULL */ keysym = XKeycodeToKeysym (display->xdisplay, event->xkey.keycode, 0); |