Fix overzealous string replacement

This commit is contained in:
jean-pierre charras 2022-09-23 10:56:58 +02:00
parent 58b03b0a1c
commit 28f836ab5c
1 changed files with 1 additions and 1 deletions

View File

@ -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() );
}