diff --git a/src/gtk/combobox.cpp b/src/gtk/combobox.cpp index 6782de03f5..8d7a13f346 100644 --- a/src/gtk/combobox.cpp +++ b/src/gtk/combobox.cpp @@ -153,6 +153,9 @@ bool wxComboBox::Create( wxWindow *parent, wxWindowID id, const wxString& value, !HasFlag(wxTE_PROCESS_ENTER) ); gtk_editable_set_editable(GTK_EDITABLE(entry), true); +#ifdef __WXGTK3__ + gtk_entry_set_width_chars(entry, 0); +#endif } Append(n, choices);