And the modify bit wasn't getting set either.

Fixes https://gitlab.com/kicad/code/kicad/issues/9926
This commit is contained in:
Jeff Young 2021-12-11 01:08:50 +00:00
parent 15d1abeeef
commit d1e6c216e1
1 changed files with 4 additions and 0 deletions

View File

@ -876,6 +876,8 @@ int EE_POINT_EDITOR::addCorner( const TOOL_EVENT& aEvent )
updateItem( shape, true );
updatePoints();
m_frame->OnModify();
return 0;
}
@ -897,6 +899,8 @@ int EE_POINT_EDITOR::removeCorner( const TOOL_EVENT& aEvent )
updateItem( shape, true );
updatePoints();
m_frame->OnModify();
return 0;
}