Fix blank symbol svg export file names

Fixes https://gitlab.com/kicad/code/kicad/-/issues/14857
This commit is contained in:
Marek Roszko 2023-05-31 20:56:20 -04:00
parent c7758999af
commit c2d56eefb9
1 changed files with 1 additions and 0 deletions

View File

@ -502,6 +502,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() );
}