Forgot to reset a flag.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14592 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2002-03-14 19:10:28 +00:00
parent ae1daed073
commit c7d8615553

View File

@@ -234,6 +234,8 @@ void wxTopLevelWindowX11::OnInternalIdle()
wxSizeEvent event( GetClientSize(), GetId() );
event.SetEventObject( this );
GetEventHandler()->ProcessEvent( event );
m_needResizeInIdle = FALSE;
}
}
@@ -254,6 +256,8 @@ bool wxTopLevelWindowX11::Show(bool show)
wxSizeEvent event(GetSize(), GetId());
event.SetEventObject(this);
GetEventHandler()->ProcessEvent(event);
m_needResizeInIdle = FALSE;
}
return wxWindowX11::Show(show);