From 69a31242b9ea2b0b654bb2645ce2011a2c2dc445 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 2 May 2018 10:31:06 +0100 Subject: [PATCH] Change status bar Unconnected to Unrouted. This should help make it clear that this is not the same as the more authoratative DRC unconnected count. --- pcbnew/class_board.cpp | 2 +- pcbnew/pcb_draw_panel_gal.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/class_board.cpp b/pcbnew/class_board.cpp index 0c12e2ae49..be4625c400 100644 --- a/pcbnew/class_board.cpp +++ b/pcbnew/class_board.cpp @@ -1134,7 +1134,7 @@ void BOARD::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList ) aList.push_back( MSG_PANEL_ITEM( _( "Nets" ), txt, RED ) ); txt.Printf( wxT( "%d" ), GetConnectivity()->GetUnconnectedCount() ); - aList.push_back( MSG_PANEL_ITEM( _( "Unconnected" ), txt, BLUE ) ); + aList.push_back( MSG_PANEL_ITEM( _( "Unrouted" ), txt, BLUE ) ); } diff --git a/pcbnew/pcb_draw_panel_gal.cpp b/pcbnew/pcb_draw_panel_gal.cpp index d4f7f2a7be..d9e7900534 100644 --- a/pcbnew/pcb_draw_panel_gal.cpp +++ b/pcbnew/pcb_draw_panel_gal.cpp @@ -346,7 +346,7 @@ void PCB_DRAW_PANEL_GAL::GetMsgPanelInfo( std::vector& aList ) aList.push_back( MSG_PANEL_ITEM( _( "Nets" ), txt, RED ) ); txt.Printf( wxT( "%d" ), board->GetConnectivity()->GetUnconnectedCount() ); - aList.push_back( MSG_PANEL_ITEM( _( "Unconnected" ), txt, BLUE ) ); + aList.push_back( MSG_PANEL_ITEM( _( "Unrouted" ), txt, BLUE ) ); }