diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-10-27 04:38:55 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-10-27 04:38:55 +0000 |
commit | 7de0d97271b4da79c4b73ca0cf3f073efb5ae716 (patch) | |
tree | 7a71fd7f3c95cd81bc2b795baeb634dba6cdeecb /gtk/gtkcombobox.c | |
parent | bc41f73c4c8445d4eeeb4308e31d7977f52c5ba9 (diff) | |
download | gtk+-7de0d97271b4da79c4b73ca0cf3f073efb5ae716.tar.gz |
Don't eat Ctrl-PageUp/PageDown. (#318670, Christian Neumair)
2005-10-27 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c (gtk_combo_box_key_press): Don't eat
Ctrl-PageUp/PageDown. (#318670, Christian Neumair)
Diffstat (limited to 'gtk/gtkcombobox.c')
-rw-r--r-- | gtk/gtkcombobox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index f6a6a22771..d6ae05a40b 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -3492,6 +3492,9 @@ gtk_combo_box_key_press (GtkWidget *widget, return TRUE; } + if (state != 0) + return FALSE; + switch (event->keyval) { case GDK_Down: |