Plotter: Ensure group style is respected in SVG

Graphics Changed is cleared when setting graphics for a group but needs
to be reset when the group ends.

Fixes: lp:1830245
* https://bugs.launchpad.net/kicad/+bug/1830245

(cherry picked from commit 1a56dfe342)
This commit is contained in:
Seth Hillbrand 2019-05-23 07:13:38 -07:00
parent 6db7cb8937
commit 691c6614a8
1 changed files with 2 additions and 0 deletions

View File

@ -303,6 +303,8 @@ void SVG_PLOTTER::StartBlock( void* aData )
void SVG_PLOTTER::EndBlock( void* aData )
{
fprintf( outputFile, "</g>\n" );
m_graphics_changed = true;
}