From d1e6c216e10cb1704520efa1b4cff2a9581e44de Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 11 Dec 2021 01:08:50 +0000 Subject: [PATCH] And the modify bit wasn't getting set either. Fixes https://gitlab.com/kicad/code/kicad/issues/9926 --- eeschema/tools/ee_point_editor.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eeschema/tools/ee_point_editor.cpp b/eeschema/tools/ee_point_editor.cpp index 44b50ca8ee..d527dd33fe 100644 --- a/eeschema/tools/ee_point_editor.cpp +++ b/eeschema/tools/ee_point_editor.cpp @@ -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; }