]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/radiobut.cpp
Do not generate wxEVT_PG_SELECTED with direct ClearSelection() and SelectProperty...
[wxWidgets.git] / src / gtk / radiobut.cpp
index 93e92becbb64528184d047804b52f659618ed1bc..779c22e58de928d1672e01911e58b95e466f2357 100644 (file)
@@ -138,11 +138,18 @@ bool wxRadioButton::GetValue() const
 
 bool wxRadioButton::Enable( bool enable )
 {
+    bool isEnabled = IsEnabled();
+
     if ( !wxControl::Enable( enable ) )
         return false;
 
     gtk_widget_set_sensitive(GTK_BIN(m_widget)->child, enable);
 
+    if (!isEnabled && enable)
+    {
+        GTKFixSensitivity();
+    }
+
     return true;
 }