git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32351
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// buttons in the same group: Windows doesn't do it automatically
if ( m_isChecked )
{
// buttons in the same group: Windows doesn't do it automatically
if ( m_isChecked )
{
+ // If another radiobutton in the group currently has the focus, we have to
+ // set it to this radiobutton, else the old readiobutton will be reselected
+ // automatically, if a parent window loses the focus and regains it.
+ bool shouldSetFocus = false;
+ wxWindow* pFocusWnd = FindFocus();
+
const wxWindowList& siblings = GetParent()->GetChildren();
wxWindowList::compatibility_iterator nodeThis = siblings.Find(this);
wxCHECK_RET( nodeThis, _T("radio button not a child of its parent?") );
const wxWindowList& siblings = GetParent()->GetChildren();
wxWindowList::compatibility_iterator nodeThis = siblings.Find(this);
wxCHECK_RET( nodeThis, _T("radio button not a child of its parent?") );
+ if (btn == pFocusWnd)
+ shouldSetFocus = true;
+
btn->SetValue(false);
if ( btn->HasFlag(wxRB_GROUP) )
btn->SetValue(false);
if ( btn->HasFlag(wxRB_GROUP) )
+ {
+ if (btn == pFocusWnd)
+ shouldSetFocus = true;
+
+ if (shouldSetFocus)
+ SetFocus();