From: Václav Slavík Date: Wed, 25 Oct 2006 18:14:08 +0000 (+0000) Subject: use window's font instead of the default one in wxStatusBar X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/686ca1b5d4867bca6c82a82078fd26291c6e6659 use window's font instead of the default one in wxStatusBar git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42404 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/univ/statusbr.cpp b/src/univ/statusbr.cpp index b4846a8766..8c817a5ab3 100644 --- a/src/univ/statusbr.cpp +++ b/src/univ/statusbr.cpp @@ -110,7 +110,8 @@ void wxStatusBarUniv::DoDraw(wxControlRenderer *renderer) // prepare the DC wxDC& dc = renderer->GetDC(); - dc.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); + dc.SetFont(GetFont()); + dc.SetTextForeground(GetForegroundColour()); // do draw the fields int flags = IsEnabled() ? 0 : (int)wxCONTROL_DISABLED;