Fix the default value of enable-arrows-always

svn path=/trunk/; revision=19270
This commit is contained in:
Matthias Clasen 2007-12-28 15:18:32 +00:00
parent f3ec3ddac2
commit ae285834f7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-12-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombo.c: Fix the default value of the enable-arrows-always
property.
2007-12-28 Johan Dahlin <johan@gnome.org>
* gtk/gtkdialog.c (gtk_dialog_buildable_custom_finished)

View File

@ -911,7 +911,7 @@ gtk_combo_init (GtkCombo * combo)
combo->value_in_list = FALSE;
combo->ok_if_empty = TRUE;
combo->use_arrows = TRUE;
combo->use_arrows_always = FALSE;
combo->use_arrows_always = TRUE;
combo->entry = gtk_entry_new ();
combo->button = gtk_button_new ();
combo->current_button = 0;