Eeschema: don't escape document file alias names in legacy plugin.
Escaping the document file (.dcm) alias names breaks the link between the document file and the library (.lib) file. This causes the information in the document file to be lost. Fixes https://gitlab.com/kicad/code/kicad/-/issues/9130
This commit is contained in:
parent
21313a4c1a
commit
4663da4709
|
@ -2725,7 +2725,7 @@ void SCH_LEGACY_PLUGIN_CACHE::loadDocs()
|
|||
|
||||
aliasName = wxString::FromUTF8( line );
|
||||
aliasName.Trim();
|
||||
aliasName = EscapeString( aliasName, CTX_LIBID );
|
||||
// aliasName = EscapeString( aliasName, CTX_LIBID );
|
||||
|
||||
LIB_SYMBOL_MAP::iterator it = m_symbols.find( aliasName );
|
||||
|
||||
|
|
Loading…
Reference in New Issue