Fix overzealous string replacement
This commit is contained in:
parent
58b03b0a1c
commit
28f836ab5c
|
@ -160,7 +160,7 @@ wxString BOARD_INSPECTION_TOOL::getItemDescription( BOARD_ITEM* aItem )
|
|||
{
|
||||
BOARD_CONNECTED_ITEM* cItem = static_cast<BOARD_CONNECTED_ITEM*>( aItem );
|
||||
|
||||
msg += wxS( " " ) + wxString::Format( _( "[netclass %msg]" ),
|
||||
msg += wxS( " " ) + wxString::Format( _( "[netclass %s]" ),
|
||||
cItem->GetEffectiveNetClass()->GetName() );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue