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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user