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
This commit is contained in:
Paul Cornett
2008-05-11 20:17:30 +00:00
parent fd11f77773
commit 460d7f8221

View File

@@ -2069,17 +2069,6 @@ void wxWindowDCImpl::SetBackgroundMode( int mode )
wxCHECK_RET( IsOk(), wxT("invalid window dc") ); wxCHECK_RET( IsOk(), wxT("invalid window dc") );
m_backgroundMode = mode; 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) ) void wxWindowDCImpl::SetPalette( const wxPalette& WXUNUSED(palette) )