SHAPE_LINE_CHAIN: Fix arc indices rotation after merging duplicate points

Fixes https://gitlab.com/kicad/code/kicad/-/issues/9843
This commit is contained in:
Roberto Fernandez Bautista 2021-12-05 15:12:09 +00:00
parent 10be483430
commit 2d1ad52212
1 changed files with 2 additions and 0 deletions

View File

@ -165,6 +165,8 @@ void SHAPE_LINE_CHAIN::mergeFirstLastPointIfNeeded()
m_points.pop_back();
m_shapes.pop_back();
fixIndicesRotation();
}
}
}