Don't recurse upwards when updating pending focus in wxMSW
This is unnecessary, we only need to update the pending focus in the immediate parent window to prevent a wrong radio button from being focused (and hence selected) when it regains focus, there is no good reason at all to interfere with the focus in the grandparent (and higher) windows. Doing this was not only useless, but actually harmful, as it overrode explicit calls to SetFocus() in the user code, so just stop doing it. This also allows to avoid having 2 functions related to this and keep just a single virtual WXSetPendingFocus() one. Closes #18653.
This commit is contained in:
@@ -265,7 +265,7 @@ public:
|
||||
}
|
||||
|
||||
WXDLLIMPEXP_INLINE_CORE
|
||||
virtual void WXDoUpdatePendingFocus(wxWindow* win) wxOVERRIDE
|
||||
virtual void WXSetPendingFocus(wxWindow* win) wxOVERRIDE
|
||||
{
|
||||
return m_container.SetLastFocus(win);
|
||||
}
|
||||
|
Reference in New Issue
Block a user