Fix blank symbol svg export file names

Fixes https://gitlab.com/kicad/code/kicad/-/issues/14857


(cherry picked from commit c2d56eefb9)
This commit is contained in:
Marek Roszko 2023-05-31 20:56:20 -04:00 committed by Mark Roszko
parent b54c03f89e
commit 42811d0602
1 changed files with 1 additions and 0 deletions

View File

@ -403,6 +403,7 @@ int EESCHEMA_JOBS_HANDLER::doSymExportSvg( JOB_SYM_EXPORT_SVG* aSvgJob,
if( convert == 2 )
filename += wxS( "_demorgan" );
fn.SetName( filename );
wxPrintf( _( "Plotting symbol '%s' to '%s'\n" ), symbol->GetName(), fn.GetFullPath() );
}