mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Feed the sym svg export absolute paths for source lib
This commit is contained in:
parent
25f34a14a1
commit
e056c96c10
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user