diff --git a/eeschema/lib_arc.cpp b/eeschema/lib_arc.cpp index affc245d84..54cb081a76 100644 --- a/eeschema/lib_arc.cpp +++ b/eeschema/lib_arc.cpp @@ -399,12 +399,12 @@ void LIB_ARC::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vectorGetUserUnits(), m_Width ); - aList.emplace_back( _( "Line Width" ), msg, BLUE ); + aList.emplace_back( _( "Line Width" ), msg ); msg.Printf( wxT( "(%d, %d, %d, %d)" ), bBox.GetOrigin().x, bBox.GetOrigin().y, bBox.GetEnd().x, bBox.GetEnd().y ); - aList.emplace_back( _( "Bounding Box" ), msg, BROWN ); + aList.emplace_back( _( "Bounding Box" ), msg ); } diff --git a/eeschema/lib_bezier.cpp b/eeschema/lib_bezier.cpp index ba1ec9f744..431287c5c4 100644 --- a/eeschema/lib_bezier.cpp +++ b/eeschema/lib_bezier.cpp @@ -337,7 +337,7 @@ void LIB_BEZIER::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vectorGetUserUnits(), m_Width ); - aList.emplace_back( _( "Line Width" ), msg, BLUE ); + aList.emplace_back( _( "Line Width" ), msg ); msg.Printf( wxT( "(%d, %d, %d, %d)" ), bBox.GetOrigin().x, @@ -345,7 +345,7 @@ void LIB_BEZIER::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector( aFrame ) ) { SCH_SHEET_PATH path = schframe->GetCurrentSheet(); path.push_back( this ); - aList.emplace_back( _( "Hierarchical Path" ), path.PathHumanReadable( false ), BLUE ); + aList.emplace_back( _( "Hierarchical Path" ), path.PathHumanReadable( false ) ); } - aList.emplace_back( _( "File Name" ), m_fields[ SHEETFILENAME ].GetText(), BROWN ); + aList.emplace_back( _( "File Name" ), m_fields[ SHEETFILENAME ].GetText() ); } diff --git a/gerbview/gerber_draw_item.cpp b/gerbview/gerber_draw_item.cpp index 5474388349..ebf5f839dc 100644 --- a/gerbview/gerber_draw_item.cpp +++ b/gerbview/gerber_draw_item.cpp @@ -664,7 +664,7 @@ void GERBER_DRAW_ITEM::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vectorGetPadCount() ); - 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" ), board->GetNodesCount() ); - aList.emplace_back( _( "Nodes" ), txt, DARKCYAN ); + aList.emplace_back( _( "Nodes" ), txt ); txt.Printf( wxT( "%d" ), board->GetNetCount() - 1 /* don't include "No Net" in count */ ); - aList.emplace_back( _( "Nets" ), txt, RED ); + aList.emplace_back( _( "Nets" ), txt ); txt.Printf( wxT( "%d" ), board->GetConnectivity()->GetUnconnectedCount() ); - aList.emplace_back( _( "Unrouted" ), txt, BLUE ); + aList.emplace_back( _( "Unrouted" ), txt ); }