From: Julian Smart Date: Thu, 17 Apr 2003 20:18:01 +0000 (+0000) Subject: Darkened preview background for Mac (else get stripey background) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ca5020c22926a6906e510671b53fad226d6de968 Darkened preview background for Mac (else get stripey background) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20263 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/prntbase.cpp b/src/common/prntbase.cpp index 492581ef08..0b3899fdc4 100644 --- a/src/common/prntbase.cpp +++ b/src/common/prntbase.cpp @@ -191,7 +191,7 @@ wxScrolledWindow(parent, -1, pos, size, style, name) #ifdef __WXMAC__ // The app workspace colour is always white, but we should have // a contrast with the page. - wxSystemColour colourIndex = wxSYS_COLOUR_BTNFACE; + wxSystemColour colourIndex = wxSYS_COLOUR_3DDKSHADOW; #else wxSystemColour colourIndex = wxSYS_COLOUR_APPWORKSPACE; #endif @@ -228,7 +228,7 @@ void wxPreviewCanvas::OnSysColourChanged(wxSysColourChangedEvent& event) #ifdef __WXMAC__ // The app workspace colour is always white, but we should have // a contrast with the page. - wxSystemColour colourIndex = wxSYS_COLOUR_BTNFACE; + wxSystemColour colourIndex = wxSYS_COLOUR_3DDKSHADOW; #else wxSystemColour colourIndex = wxSYS_COLOUR_APPWORKSPACE; #endif