And the modify bit wasn't getting set either.
Fixes https://gitlab.com/kicad/code/kicad/issues/9926
This commit is contained in:
parent
15d1abeeef
commit
d1e6c216e1
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue