summaryrefslogtreecommitdiff
path: root/gtk/gtkcomboboxentry.c
diff options
context:
space:
mode:
authorKristian Rietveld <kris@gtk.org>2003-09-30 19:11:55 +0000
committerKristian Rietveld <kristian@src.gnome.org>2003-09-30 19:11:55 +0000
commitb78ee57ea41c5ff0cb98381301a9264c2404eb7d (patch)
tree2e332c884be1b9e24f7e4c9ff10e788979fbb282 /gtk/gtkcomboboxentry.c
parentfa7b7509941959605cddf14bcfbed8f5a7dbb729 (diff)
downloadgdk-pixbuf-b78ee57ea41c5ff0cb98381301a9264c2404eb7d.tar.gz
actually show the child.
Tue Sep 30 21:08:43 2003 Kristian Rietveld <kris@gtk.org> * gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child. * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543, Marco Pesenti Gritti).
Diffstat (limited to 'gtk/gtkcomboboxentry.c')
-rw-r--r--gtk/gtkcomboboxentry.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkcomboboxentry.c b/gtk/gtkcomboboxentry.c
index 7d29916a3..7bba0e11b 100644
--- a/gtk/gtkcomboboxentry.c
+++ b/gtk/gtkcomboboxentry.c
@@ -152,6 +152,7 @@ gtk_combo_box_entry_new (GtkTreeModel *model,
GTK_COMBO_BOX_ENTRY (ret)->priv->entry = gtk_entry_new ();
gtk_container_add (GTK_CONTAINER (ret),
GTK_COMBO_BOX_ENTRY (ret)->priv->entry);
+ gtk_widget_show (GTK_COMBO_BOX_ENTRY (ret)->priv->entry);
GTK_COMBO_BOX_ENTRY (ret)->priv->text_column = text_column;
renderer = gtk_cell_renderer_text_new ();