Add ERC & DRC checks for unresolved variables.

This commit is contained in:
Jeff Young
2020-03-30 14:15:59 +01:00
parent 4990d1e7b2
commit 41b5872f12
21 changed files with 249 additions and 62 deletions
+2 -2
View File
@@ -168,8 +168,8 @@ wxString EDA_TEXT::ShortenedShownText() const
tmp.Replace( wxT( "\r" ), wxT( " " ) );
tmp.Replace( wxT( "\t" ), wxT( " " ) );
if( tmp.Length() > 15 )
tmp = tmp.Left( 12 ) + wxT( "..." );
if( tmp.Length() > 36 )
tmp = tmp.Left( 34 ) + wxT( "..." );
return tmp;
}