From 3a301e50ae706aa2affb2712e0a9e06db8f74eec Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 25 Jun 2023 16:00:50 +0100 Subject: [PATCH] Clear all edit flags when pushing SCH_COMMIT. --- eeschema/sch_commit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_commit.cpp b/eeschema/sch_commit.cpp index 9d7b9c773d..c0e0db799f 100644 --- a/eeschema/sch_commit.cpp +++ b/eeschema/sch_commit.cpp @@ -316,7 +316,7 @@ void SCH_COMMIT::pushSchEdit( const wxString& aMessage, int aCommitFlags ) break; } - schItem->ClearFlags( IS_NEW | IS_MOVING ); + schItem->ClearEditFlags(); } if( frame )