active next window in Z-order when a frame is deleted

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11868 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2001-10-07 09:46:26 +00:00
parent a08afcce1c
commit d46330c586

View File

@ -532,10 +532,21 @@ wxWindowMGL::~wxWindowMGL()
if ( gs_mouseCapture == this )
ReleaseMouse();
if (gs_activeFrame == this)
{
// activate next frame in Z-order:
if ( m_wnd->prev )
{
wxWindowMGL *win = (wxWindowMGL*)m_wnd->prev->userData;
win->SetFocus();
}
gs_activeFrame = NULL;
}
if ( gs_focusedWindow == this )
KillFocus();
if ( gs_windowUnderMouse == this )
gs_windowUnderMouse = NULL;