applying OSAF patch for "toolbar selection not correct on Mac after calling Realize a 2nd time"
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33170 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -436,6 +436,21 @@ bool wxToolBar::Realize()
|
|||||||
DoToggleTool(tool, true);
|
DoToggleTool(tool, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (tool->IsToggled())
|
||||||
|
{
|
||||||
|
wxToolBarToolsList::compatibility_iterator nodePrev = node->GetPrevious();
|
||||||
|
while ( nodePrev )
|
||||||
|
{
|
||||||
|
wxToolBarToolBase *tool = nodePrev->GetData();
|
||||||
|
if ( !tool->IsButton() || (tool->GetKind() != wxITEM_RADIO) )
|
||||||
|
break;
|
||||||
|
if ( tool->Toggle(false) )
|
||||||
|
{
|
||||||
|
DoToggleTool(tool, false);
|
||||||
|
}
|
||||||
|
nodePrev = nodePrev->GetPrevious();
|
||||||
|
}
|
||||||
|
}
|
||||||
isRadio = TRUE;
|
isRadio = TRUE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user