symbol_editor_control: fix incorrect bounding in SVG export.
Fixes #13093 https://gitlab.com/kicad/code/kicad/issues/13093
This commit is contained in:
parent
cdeb539254
commit
ecfd74c1be
|
@ -457,8 +457,8 @@ int SYMBOL_EDITOR_CONTROL::ExportSymbolAsSVG( const TOOL_EVENT& aEvent )
|
|||
editFrame->GetConvert() ).GetSize();
|
||||
|
||||
// Add a small margin to the plot bounding box
|
||||
pageTemp.SetWidthMils( int( symbolSize.x * 1.2 ) );
|
||||
pageTemp.SetHeightMils( int( symbolSize.y * 1.2 ) );
|
||||
pageTemp.SetWidthMils( Iu2Mils( symbolSize.x * 1.2 ) );
|
||||
pageTemp.SetHeightMils( Iu2Mils( symbolSize.y * 1.2 ) );
|
||||
|
||||
editFrame->GetScreen()->SetPageSettings( pageTemp );
|
||||
editFrame->SVGPlotSymbol( fullFileName );
|
||||
|
|
Loading…
Reference in New Issue