X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b985763280ef50a537c28ce6e811c9186859453d..c8c0e54c700b29c0ec0d073e536f5b2604e3778d:/src/gtk1/dc.cpp diff --git a/src/gtk1/dc.cpp b/src/gtk1/dc.cpp index ad4b1373f6..d98edaf9ec 100644 --- a/src/gtk1/dc.cpp +++ b/src/gtk1/dc.cpp @@ -48,7 +48,7 @@ wxDC::wxDC() m_pen = *wxBLACK_PEN; m_font = *wxNORMAL_FONT; - m_brush = *wxTRANSPARENT_BRUSH; + m_brush = *wxWHITE_BRUSH; } void wxDC::DoSetClippingRegion( long x, long y, long width, long height ) @@ -97,22 +97,8 @@ wxSize wxDC::GetPPI() const void wxDC::ComputeScaleAndOrigin() { - /* CMB: copy scale to see if it changes */ - double origScaleX = m_scaleX; - double origScaleY = m_scaleY; - m_scaleX = m_logicalScaleX * m_userScaleX; m_scaleY = m_logicalScaleY * m_userScaleY; - - /* CMB: if scale has changed call SetPen to recalulate the line width */ - if (m_scaleX != origScaleX || m_scaleY != origScaleY) - { - /* this is a bit artificial, but we need to force wxDC to think - the pen has changed */ - wxPen pen = m_pen; - m_pen = wxNullPen; - SetPen( pen ); - } } void wxDC::SetMapMode( int mode )