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:
parent
3e062867de
commit
a7b3fac7b5
|
@ -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…
Reference in New Issue