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:
Wayne Stambaugh 2021-09-16 09:09:44 -04:00
parent 21313a4c1a
commit 4663da4709
1 changed files with 1 additions and 1 deletions

View File

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