From: Paul Cornett Date: Sun, 11 May 2008 20:17:30 +0000 (+0000) Subject: don't change brush settings in SetBackgroundMode(), it is only supposed to affect... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/460d7f822102b089db121e11ccf185825870ea36 don't change brush settings in SetBackgroundMode(), it is only supposed to affect text background, bug 1480986 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/dcclient.cpp b/src/gtk/dcclient.cpp index 5589029861..10abb80eb3 100644 --- a/src/gtk/dcclient.cpp +++ b/src/gtk/dcclient.cpp @@ -2069,17 +2069,6 @@ void wxWindowDCImpl::SetBackgroundMode( int mode ) wxCHECK_RET( IsOk(), wxT("invalid window dc") ); m_backgroundMode = mode; - - if (!m_gdkwindow) return; - - // CMB 21/7/98: fill style of cross-hatch brushes is affected by - // transparent/solid background mode - - if (m_brush.GetStyle() != wxBRUSHSTYLE_SOLID && m_brush.GetStyle() != wxBRUSHSTYLE_TRANSPARENT) - { - gdk_gc_set_fill( m_brushGC, - (m_backgroundMode == wxBRUSHSTYLE_TRANSPARENT) ? GDK_STIPPLED : GDK_OPAQUE_STIPPLED); - } } void wxWindowDCImpl::SetPalette( const wxPalette& WXUNUSED(palette) )