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:
Stefan Csomor 2005-03-30 07:53:48 +00:00
parent be5fe3aafb
commit 8f2ee25db4

View File

@ -436,6 +436,21 @@ bool wxToolBar::Realize()
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;
}
else