From: Robert Roebling Date: Tue, 22 Aug 2006 22:37:15 +0000 (+0000) Subject: Set size of hint window before showing it. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e65fbef69dbcff17380ccf5143fd08054c2b4ec5 Set size of hint window before showing it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40759 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/aui/framemanager.cpp b/src/aui/framemanager.cpp index 0018ab37b0..9e2fe08530 100644 --- a/src/aui/framemanager.cpp +++ b/src/aui/framemanager.cpp @@ -2656,6 +2656,8 @@ void wxFrameManager::ShowHint(const wxRect& rect) ) m_hint_fadeamt = 0; + m_hint_wnd->SetSize(rect); + if (! m_hint_wnd->IsShown()) m_hint_wnd->Show(); @@ -2670,7 +2672,6 @@ void wxFrameManager::ShowHint(const wxRect& rect) if (m_hint_wnd->IsKindOf(CLASSINFO(wxPseudoTransparentFrame))) ((wxPseudoTransparentFrame *)m_hint_wnd)->SetTransparent(m_hint_fadeamt); #endif - m_hint_wnd->SetSize(rect); m_hint_wnd->Raise();