diff --git a/ChangeLog b/ChangeLog index a46a0fd5f8..85a440b9eb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Mar 13 21:37:44 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the + list when an item is selected via the keyboard. + 2004-03-13 Anders Carlsson * gtk/gtkfilesystemunix.c: (remove_trailing_slash), diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a46a0fd5f8..85a440b9eb 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Sat Mar 13 21:37:44 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the + list when an item is selected via the keyboard. + 2004-03-13 Anders Carlsson * gtk/gtkfilesystemunix.c: (remove_trailing_slash), diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a46a0fd5f8..85a440b9eb 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Sat Mar 13 21:37:44 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the + list when an item is selected via the keyboard. + 2004-03-13 Anders Carlsson * gtk/gtkfilesystemunix.c: (remove_trailing_slash), diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a46a0fd5f8..85a440b9eb 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Sat Mar 13 21:37:44 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the + list when an item is selected via the keyboard. + 2004-03-13 Anders Carlsson * gtk/gtkfilesystemunix.c: (remove_trailing_slash), diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a46a0fd5f8..85a440b9eb 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Sat Mar 13 21:37:44 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the + list when an item is selected via the keyboard. + 2004-03-13 Anders Carlsson * gtk/gtkfilesystemunix.c: (remove_trailing_slash), diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index 8126dd87fe..8932d9f6ad 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -2458,6 +2458,10 @@ gtk_combo_box_list_key_press (GtkWidget *widget, gtk_tree_path_free (path); } } + + gtk_combo_box_popdown (combo_box); + + return TRUE; } return FALSE;