git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34152
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
::SetTextColor(hdc, wxColourToRGB(GetForegroundColour()));
}
- else
- {
- ::SetTextColor(hdc, ::GetSysColor(COLOR_WINDOWTEXT));
- }
WXHBRUSH hbr = 0;
if ( !colBg.Ok() )
wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBg, wxSOLID);
hbr = (WXHBRUSH)brush->GetResourceHandle();
+
+ // if we use custom background, we should set foreground ourselves too
+ if ( !m_hasFgCol )
+ {
+ ::SetTextColor(hdc, ::GetSysColor(COLOR_WINDOWTEXT));
+ }
+ //else: already set above
}
return hbr;