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.
This commit is contained in:
parent
62522ee450
commit
69a31242b9
|
@ -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 ) );
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -346,7 +346,7 @@ void PCB_DRAW_PANEL_GAL::GetMsgPanelInfo( std::vector<MSG_PANEL_ITEM>& 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 ) );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue