]> git.saurik.com Git - wxWidgets.git/commitdiff
color must not be set for wxMac
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 4 Apr 2004 09:07:30 +0000 (09:07 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 4 Apr 2004 09:07:30 +0000 (09:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26594 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/panelg.cpp

index f29cf4019b51c30576163d51ce91031dc4dc114e..04db45b0836c1e64d1da669fc5532d2a25fdb803 100644 (file)
@@ -124,7 +124,9 @@ bool wxPanel::Create(wxWindow *parent, wxWindowID id,
     if ( !wxWindow::Create(parent, id, pos, size, style, name) )
         return false;
 
     if ( !wxWindow::Create(parent, id, pos, size, style, name) )
         return false;
 
+#ifndef __WXMAC__
     SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
     SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
+#endif
 
     return true;
 }
 
     return true;
 }