fix for combo box bustage (bug 6712)

git-svn-id: svn://10.0.0.236/trunk@32220 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pavlov%pavlov.net 1999-05-19 01:37:21 +00:00
parent de50d2c987
commit 381560d068

View File

@ -314,6 +314,7 @@ NS_METHOD nsComboBox::CreateNative(GtkWidget *parentWindow)
::gtk_widget_set_name(mWidget, "nsComboBox");
mCombo = ::gtk_combo_new();
gtk_widget_show(mCombo);
gtk_widget_show(mAlign);
/* make the stuff uneditable */
gtk_entry_set_editable(GTK_ENTRY(GTK_COMBO(mCombo)->entry), PR_FALSE);
gtk_container_add(GTK_CONTAINER(mAlign), mCombo);