Remove colours from message text items.

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

(cherry picked from commit 125d5b7)
This commit is contained in:
Jeff Young 2018-06-03 18:05:42 +01:00
parent 3e062867de
commit a7b3fac7b5
1 changed files with 2 additions and 1 deletions

View File

@ -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() );