]> git.saurik.com Git - wxWidgets.git/commitdiff
Uncheck radiobutton when calling ::SetValue(false) as per wxMSW, fixes #12344: Cannot...
authorRobert Roebling <robert@roebling.de>
Mon, 16 Aug 2010 15:33:31 +0000 (15:33 +0000)
committerRobert Roebling <robert@roebling.de>
Mon, 16 Aug 2010 15:33:31 +0000 (15:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65323 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/radiobut.cpp

index d2c5f73cfee57f8bb905d8d363285db4b9521aa7..49590debfb527425757019879626b05b7fa147a6 100644 (file)
@@ -123,6 +123,8 @@ void wxRadioButton::SetValue( bool val )
         // should give an assert
         // RL - No it shouldn't.  A wxGenericValidator might try to set it
         //      as FALSE.  Failing silently is probably TRTTD here.
         // should give an assert
         // RL - No it shouldn't.  A wxGenericValidator might try to set it
         //      as FALSE.  Failing silently is probably TRTTD here.
+        // RR - MSW actually unchecks the radio button so do this here, too
+        gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(m_widget), FALSE );
     }
 
     g_signal_handlers_unblock_by_func(
     }
 
     g_signal_handlers_unblock_by_func(