Don't use animations when showing non-visible windows.

This is useless anyhow but also results in artefacts when the window becomes
visible later.

Closes #15643.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75130 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-11-05 14:39:13 +00:00
parent bdbf30f8d0
commit b6d00b3b15

View File

@@ -675,7 +675,7 @@ wxWindowMSW::MSWShowWithEffect(bool show,
unsigned timeout)
{
#if wxUSE_DYNLIB_CLASS
if ( effect == wxSHOW_EFFECT_NONE )
if ( effect == wxSHOW_EFFECT_NONE || !IsShownOnScreen() )
return Show(show);
if ( !wxWindowBase::Show(show) )