Forbid colon, slash and backslash characters in symbol names

This commit is contained in:
Maciej Suminski 2017-12-21 13:56:35 +01:00
parent dbf39e6333
commit 783b5e2616
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ SCH_FIELD_VALIDATOR::SCH_FIELD_VALIDATOR( bool aIsCmplibEditor,
if( aFieldId == REFERENCE )
excludes += " ";
else if( aFieldId == VALUE && m_isLibEditor )
excludes += " ";
excludes += " :/\\";
long style = GetStyle();