X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b28d3abf7eb85e8a8d056076d2812977105a28e1..b477f956e0421cb8d8e40635f4c372a0298fd739:/src/x11/settings.cpp?ds=sidebyside diff --git a/src/x11/settings.cpp b/src/x11/settings.cpp index d27621f7c4..f7d484b3d6 100644 --- a/src/x11/settings.cpp +++ b/src/x11/settings.cpp @@ -22,8 +22,16 @@ wxColour wxSystemSettingsNative::GetColour(wxSystemColour index) { - // Overridden by wxSystemSettings::GetColour in wxUniversal - // to do the Right Thing + switch (index) + { + case wxSYS_COLOUR_APPWORKSPACE: + return wxColour( 0xc0c0c0 ); + + default: + break; + } + + // Overridden mostly by wxSystemSettings::GetColour in wxUniversal return *wxWHITE; }