From: Vadim Zeitlin Date: Sun, 12 Nov 2006 21:38:49 +0000 (+0000) Subject: in addition to wxWinCE, also set background colour explicitly for GTK1, otherwise... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/56eebcdac22b3dff33f0aa833e8ed41adc5e79df in addition to wxWinCE, also set background colour explicitly for GTK1, otherwise it is black there git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43371 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/collpaneg.cpp b/src/generic/collpaneg.cpp index 5c5910cac0..f31a7762c7 100644 --- a/src/generic/collpaneg.cpp +++ b/src/generic/collpaneg.cpp @@ -86,7 +86,9 @@ bool wxGenericCollapsiblePane::Create(wxWindow *parent, m_sz->Add(m_pStaticLine, 1, wxALIGN_CENTER|wxLEFT|wxRIGHT, GetBorder()); #endif -#ifdef __WXWINCE__ + // FIXME: at least under wxCE and wxGTK1 the background is black if we don't do + // this, no idea why... +#if defined(__WXWINCE__) || (defined(__WXGTK__) && !defined(__WXGTK20__)) SetBackgroundColour(parent->GetBackgroundColour()); #endif