diff --git a/src/gtk/combobox.cpp b/src/gtk/combobox.cpp index 8dc1c7a820..ba38afe937 100644 --- a/src/gtk/combobox.cpp +++ b/src/gtk/combobox.cpp @@ -954,9 +954,11 @@ void wxComboBox::SetValue( const wxString& value ) #endif entry = GTK_ENTRY( GTK_COMBO(m_widget)->entry ); + DisableEvents(); wxString tmp; if (!value.IsNull()) tmp = value; gtk_entry_set_text( entry, wxGTK_CONV( tmp ) ); + EnableEvents(); InvalidateBestSize(); }