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:
@@ -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) )
|
||||
|
Reference in New Issue
Block a user