wxScrolledWindow can get wxEVT_CHILD_FOCUS event for itself, handle that case too
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
2ada746fb4
commit
02a3389106
@ -1359,6 +1359,10 @@ void wxScrollHelper::HandleOnChildFocus(wxChildFocusEvent& event)
|
||||
|
||||
// find the immediate child under which the window receiving focus is:
|
||||
wxWindow *win = event.GetWindow();
|
||||
|
||||
if ( win == m_targetWindow )
|
||||
return; // nothing to do
|
||||
|
||||
while ( win->GetParent() != m_targetWindow )
|
||||
{
|
||||
win = win->GetParent();
|
||||
|
Loading…
Reference in New Issue
Block a user