BOARD_ITEM::MenuText()
This commit is contained in:
parent
c748c1bc4a
commit
5491bdc655
|
@ -166,12 +166,15 @@ wxString BOARD_ITEM::MenuText( const BOARD* aPcb ) const
|
||||||
text << wxT( " [" ) << net->m_Netname << wxT( "]" );
|
text << wxT( " [" ) << net->m_Netname << wxT( "]" );
|
||||||
}
|
}
|
||||||
|
|
||||||
// say which layers, only two for now
|
if( shape != VIA_NORMALE )
|
||||||
int topLayer;
|
{
|
||||||
int botLayer;
|
// say which layers, only two for now
|
||||||
via->ReturnLayerPair( &topLayer, &botLayer );
|
int topLayer;
|
||||||
text << _( " on " ) << ReturnPcbLayerName( topLayer).Trim() << wxT(" <-> ")
|
int botLayer;
|
||||||
<< ReturnPcbLayerName( botLayer ).Trim();
|
via->ReturnLayerPair( &topLayer, &botLayer );
|
||||||
|
text << _( " on " ) << ReturnPcbLayerName( topLayer).Trim() << wxT(" <-> ")
|
||||||
|
<< ReturnPcbLayerName( botLayer ).Trim();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue