]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/radiobut.cpp
Gracefully disconnect clients in wxDDEServer dtor.
[wxWidgets.git] / src / gtk / radiobut.cpp
index 93e92becbb64528184d047804b52f659618ed1bc..d2c5f73cfee57f8bb905d8d363285db4b9521aa7 100644 (file)
@@ -138,11 +138,14 @@ bool wxRadioButton::GetValue() const
 
 bool wxRadioButton::Enable( bool enable )
 {
-    if ( !wxControl::Enable( enable ) )
+    if (!base_type::Enable(enable))
         return false;
 
     gtk_widget_set_sensitive(GTK_BIN(m_widget)->child, enable);
 
+    if (enable)
+        GTKFixSensitivity();
+
     return true;
 }