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:
parent
a08afcce1c
commit
d46330c586
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user