do nothing in Freeze/Thaw() if the window is hidden, otherwise the window is not redrawn correctly after being eventually shown
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33060 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1297,7 +1297,8 @@ void wxWindowMSW::Freeze()
|
|||||||
{
|
{
|
||||||
if ( !m_frozenness++ )
|
if ( !m_frozenness++ )
|
||||||
{
|
{
|
||||||
SendSetRedraw(GetHwnd(), false);
|
if ( IsShown() )
|
||||||
|
SendSetRedraw(GetHwnd(), false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1307,11 +1308,14 @@ void wxWindowMSW::Thaw()
|
|||||||
|
|
||||||
if ( !--m_frozenness )
|
if ( !--m_frozenness )
|
||||||
{
|
{
|
||||||
SendSetRedraw(GetHwnd(), true);
|
if ( IsShown() )
|
||||||
|
{
|
||||||
|
SendSetRedraw(GetHwnd(), true);
|
||||||
|
|
||||||
// we need to refresh everything or otherwise he invalidated area is not
|
// we need to refresh everything or otherwise the invalidated area
|
||||||
// repainted
|
// is not going to be repainted
|
||||||
Refresh();
|
Refresh();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1507,7 +1511,7 @@ void wxWindowMSW::DoMoveWindow(int x, int y, int width, int height)
|
|||||||
// if our parent had prepared a defer window handle for us, use it (unless
|
// if our parent had prepared a defer window handle for us, use it (unless
|
||||||
// we are a top level window)
|
// we are a top level window)
|
||||||
wxWindowMSW *parent = GetParent();
|
wxWindowMSW *parent = GetParent();
|
||||||
HDWP hdwp = (parent && !IsTopLevel()) ? (HDWP)parent->m_hDWP : NULL;
|
HDWP hdwp = parent && !IsTopLevel() ? (HDWP)parent->m_hDWP : NULL;
|
||||||
if ( hdwp )
|
if ( hdwp )
|
||||||
{
|
{
|
||||||
hdwp = ::DeferWindowPos(hdwp, GetHwnd(), NULL,
|
hdwp = ::DeferWindowPos(hdwp, GetHwnd(), NULL,
|
||||||
|
Reference in New Issue
Block a user