X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/02a6e35839124cf11862887c857b3886c1dc0ae7..d8e342b79ef4e77130afc92b6121fd691cb289bd:/src/gtk/combobox.cpp diff --git a/src/gtk/combobox.cpp b/src/gtk/combobox.cpp index 78127baff2..627a4e3489 100644 --- a/src/gtk/combobox.cpp +++ b/src/gtk/combobox.cpp @@ -219,8 +219,10 @@ bool wxComboBox::Create( wxWindow *parent, wxWindowID id, const wxString& value, // and case-sensitive gtk_combo_set_case_sensitive( GTK_COMBO(m_widget), TRUE ); +#ifdef __WXGTK20__ if (style & wxNO_BORDER) g_object_set( GTK_ENTRY( combo->entry ), "has-frame", FALSE, NULL ); +#endif GtkWidget *list = GTK_COMBO(m_widget)->list;