mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 22:35:30 +00:00
Actually handle svg plot job failure correctly
This commit is contained in:
parent
f0408f0814
commit
1d063e1420
pcbnew
@ -117,13 +117,17 @@ bool EXPORT_SVG::Plot( BOARD* aBoard, const PCB_PLOT_SVG_OPTIONS& aSvgPlotOption
|
||||
plotter->SetColorMode( !aSvgPlotOptions.m_blackAndWhite );
|
||||
PlotBoardLayers( aBoard, plotter, aSvgPlotOptions.m_printMaskLayer, plot_opts );
|
||||
plotter->EndPlot();
|
||||
|
||||
delete plotter;
|
||||
|
||||
// reset to the values saved earlier
|
||||
aBoard->GetDesignSettings().SetAuxOrigin( savedAuxOrigin );
|
||||
aBoard->SetPageSettings( savedPageInfo );
|
||||
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
delete plotter;
|
||||
|
||||
// reset to the values saved earlier
|
||||
aBoard->GetDesignSettings().SetAuxOrigin( savedAuxOrigin );
|
||||
aBoard->SetPageSettings( savedPageInfo );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -651,11 +651,15 @@ int PCBNEW_JOBS_HANDLER::JobExportSvg( JOB* aJob )
|
||||
brd->SynchronizeProperties();
|
||||
|
||||
if( EXPORT_SVG::Plot( brd, svgPlotOptions ) )
|
||||
{
|
||||
m_reporter->Report( _( "Successfully created svg file" ) + wxS( "\n" ), RPT_SEVERITY_INFO );
|
||||
return CLI::EXIT_CODES::OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
m_reporter->Report( _( "Error creating svg file" ) + wxS( "\n" ), RPT_SEVERITY_ERROR );
|
||||
|
||||
return CLI::EXIT_CODES::OK;
|
||||
return CLI::EXIT_CODES::ERR_INVALID_OUTPUT_CONFLICT;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user