X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/687706f5e722ac8a39172024f794ae0ffbd190e2..730d336601a3ece761b56e7c05d1099352670a25:/src/msw/radiobut.cpp diff --git a/src/msw/radiobut.cpp b/src/msw/radiobut.cpp index c49c960045..e88d6d7829 100644 --- a/src/msw/radiobut.cpp +++ b/src/msw/radiobut.cpp @@ -168,6 +168,12 @@ void wxRadioButton::SetValue(bool value) // 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?") ); @@ -190,6 +196,9 @@ void wxRadioButton::SetValue(bool value) if (btn) { + if (btn == pFocusWnd) + shouldSetFocus = true; + btn->SetValue(false); if ( btn->HasFlag(wxRB_GROUP) ) @@ -217,8 +226,15 @@ void wxRadioButton::SetValue(bool value) } if (btn) + { + if (btn == pFocusWnd) + shouldSetFocus = true; + btn->SetValue(false); + } } + if (shouldSetFocus) + SetFocus(); } }