Browse Source

Remove colours from message text items.

Fixes: lp:1674015
* https://bugs.launchpad.net/kicad/+bug/1674015

(cherry picked from commit 125d5b7)
pull/17/head
Jeff Young 8 years ago
parent
commit
a7b3fac7b5
  1. 3
      common/msgpanel.cpp

3
common/msgpanel.cpp

@ -196,7 +196,8 @@ void EDA_MSG_PANEL::SetMessage( int aXPosition, const wxString& aUpperText,
void EDA_MSG_PANEL::showItem( wxDC& aDC, const MSG_PANEL_ITEM& aItem )
{
COLOR4D color = aItem.m_Color;
// COLOR4D color = aItem.m_Color;
COLOR4D color = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT );
aDC.SetTextForeground( color.ToColour() );

Loading…
Cancel
Save