Skip no_connect_ nets in the appearance widget

This commit is contained in:
Marek Roszko 2020-12-07 22:11:53 -05:00
parent e88d41f764
commit d7154c4334
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ void NET_GRID_TABLE::Rebuild()
{
int netCode = pair.second->GetNet();
if( netCode > 0 )
if( netCode > 0 && !pair.first.StartsWith( "no_connect_" ) )
{
COLOR4D color = netColors.count( netCode ) ? netColors.at( netCode ) :
COLOR4D::UNSPECIFIED;