Workaround for GTK+ sensitivity bug
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58194 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -428,6 +428,8 @@ void wxRadioBox::SetString(unsigned int item, const wxString& label)
|
||||
|
||||
bool wxRadioBox::Enable( bool enable )
|
||||
{
|
||||
bool isEnabled = IsEnabled();
|
||||
|
||||
if ( !wxControl::Enable( enable ) )
|
||||
return false;
|
||||
|
||||
@@ -442,6 +444,11 @@ bool wxRadioBox::Enable( bool enable )
|
||||
node = node->GetNext();
|
||||
}
|
||||
|
||||
if (!isEnabled && enable)
|
||||
{
|
||||
GTKFixSensitivity();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user