Feed the sym svg export absolute paths for source lib

This commit is contained in:
Marek Roszko 2023-01-05 22:26:26 -05:00
parent 25f34a14a1
commit e056c96c10
1 changed files with 4 additions and 1 deletions

View File

@ -484,7 +484,10 @@ int EESCHEMA_JOBS_HANDLER::JobSymUpgrade( JOB* aJob )
{
JOB_SYM_UPGRADE* upgradeJob = dynamic_cast<JOB_SYM_UPGRADE*>( aJob );
SCH_SEXPR_PLUGIN_CACHE schLibrary( upgradeJob->m_libraryPath );
wxFileName fn( upgradeJob->m_libraryPath );
fn.MakeAbsolute();
SCH_SEXPR_PLUGIN_CACHE schLibrary( fn.GetFullPath() );
try
{