added test for m_macControlIsShown in MacRedrawControl apparently HideControl does not work correctly for all controls...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16699 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2002-08-23 07:25:39 +00:00
parent 738aea8e0f
commit 404dfcae70
2 changed files with 2 additions and 2 deletions

View File

@@ -755,7 +755,7 @@ void wxControl::Refresh(bool eraseBack, const wxRect *rect)
void wxControl::MacRedrawControl()
{
if ( (ControlHandle) m_macControl && MacGetRootWindow() )
if ( (ControlHandle) m_macControl && MacGetRootWindow() && m_macControlIsShown )
{
wxClientDC dc(this) ;
wxMacPortSetter helper(&dc) ;

View File

@@ -755,7 +755,7 @@ void wxControl::Refresh(bool eraseBack, const wxRect *rect)
void wxControl::MacRedrawControl()
{
if ( (ControlHandle) m_macControl && MacGetRootWindow() )
if ( (ControlHandle) m_macControl && MacGetRootWindow() && m_macControlIsShown )
{
wxClientDC dc(this) ;
wxMacPortSetter helper(&dc) ;