# HG changeset patch # User hugo@oxygen-icons.org # Date 1296371212 0 # Node ID 3cec1e97e698bc0a8bf831856f3d53fa5e4683ff # Parent 223ff38e73ae171187d8c49417981384dfaf0b73 Modify the editable comboboxes to be more friendly to GTK+ themes that don't theme our previous method correctly. Fixes #13164. committer: John Bailey diff -r 223ff38e73ae -r 3cec1e97e698 pidgin/gtkutils.c --- a/pidgin/gtkutils.c Sat Jan 29 17:57:32 2011 +0000 +++ b/pidgin/gtkutils.c Sun Jan 30 07:06:52 2011 +0000 @@ -2924,7 +2924,7 @@ GtkComboBox *ret = NULL; GtkWidget *the_entry = NULL; - ret = GTK_COMBO_BOX(gtk_combo_box_new_text()); + ret = GTK_COMBO_BOX(gtk_combo_box_entry_new_text()); the_entry = gtk_entry_new(); gtk_container_add(GTK_CONTAINER(ret), the_entry);