diff --git a/gerbview/gerber_draw_item.cpp b/gerbview/gerber_draw_item.cpp index ebf5f839dc..3344eb0f6d 100644 --- a/gerbview/gerber_draw_item.cpp +++ b/gerbview/gerber_draw_item.cpp @@ -687,7 +687,7 @@ void GERBER_DRAW_ITEM::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vectorm_AperFunction; } - aList.emplace_back( msg, text, RED ); + aList.emplace_back( msg, text ); // Display graphic layer name msg = GERBER_FILE_IMAGE_LIST::GetImagesList().GetDisplayName( GetLayer(), true ); diff --git a/pcbnew/board.cpp b/pcbnew/board.cpp index 7d80d789e1..213d61d8d3 100644 --- a/pcbnew/board.cpp +++ b/pcbnew/board.cpp @@ -1082,22 +1082,22 @@ void BOARD::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector } txt.Printf( wxT( "%d" ), GetPadCount() ); - aList.emplace_back( _( "Pads" ), txt, DARKGREEN ); + aList.emplace_back( _( "Pads" ), txt ); txt.Printf( wxT( "%d" ), viasCount ); - aList.emplace_back( _( "Vias" ), txt, DARKGREEN ); + aList.emplace_back( _( "Vias" ), txt ); txt.Printf( wxT( "%d" ), trackSegmentsCount ); - aList.emplace_back( _( "Track Segments" ), txt, DARKGREEN ); + aList.emplace_back( _( "Track Segments" ), txt ); txt.Printf( wxT( "%d" ), GetNodesCount() ); - aList.emplace_back( _( "Nodes" ), txt, DARKCYAN ); + aList.emplace_back( _( "Nodes" ), txt ); txt.Printf( wxT( "%d" ), m_NetInfo.GetNetCount() - 1 /* Don't include "No Net" in count */ ); - aList.emplace_back( _( "Nets" ), txt, RED ); + aList.emplace_back( _( "Nets" ), txt ); txt.Printf( wxT( "%d" ), GetConnectivity()->GetUnconnectedCount() ); - aList.emplace_back( _( "Unrouted" ), txt, BLUE ); + aList.emplace_back( _( "Unrouted" ), txt ); } diff --git a/pcbnew/track.cpp b/pcbnew/track.cpp index f164e6bd8e..32aaa9bb57 100644 --- a/pcbnew/track.cpp +++ b/pcbnew/track.cpp @@ -699,12 +699,12 @@ void TRACK::GetMsgPanelInfoBase_Common( EDA_DRAW_FRAME* aFrame, std::vector