7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 08:41:41 +00:00

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

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