X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0ac21dde624b9dc08f6cb509f3d7356bdc185f08..0356c2597ec9f604918c880e3057650a7bf467f6:/src/generic/panelg.cpp diff --git a/src/generic/panelg.cpp b/src/generic/panelg.cpp index ff850d052b..7a31bd9ab5 100644 --- a/src/generic/panelg.cpp +++ b/src/generic/panelg.cpp @@ -125,6 +125,11 @@ bool wxPanel::Create(wxWindow *parent, wxWindowID id, // so that non-solid background renders correctly under GTK+: SetThemeEnabled(true); +#ifdef __WXWINCE__ + // Required to get solid control backgrounds under WinCE + SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); +#endif + return true; }