more active frame stuff

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-10-07 22:58:34 +00:00
parent b225f65995
commit ead60ec54b

View File

@@ -703,6 +703,17 @@ bool wxWindowMGL::Show(bool show)
return FALSE;
MGL_wmShowWindow(m_wnd, show);
if (!show && gs_activeFrame == this)
{
// activate next frame in Z-order:
if ( m_wnd->prev )
{
wxWindowMGL *win = (wxWindowMGL*)m_wnd->prev->userData;
win->SetFocus();
}
}
return TRUE;
}