From 52e9ec59547cb762f2de30de66b23e7c4f2d7bba Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Tue, 3 Nov 2020 09:32:35 -0500 Subject: [PATCH] Symbol editor: fix library symbol tree modified state bug. Fixes https://gitlab.com/kicad/code/kicad/-/issues/5573 --- eeschema/symbol_editor/symbol_editor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eeschema/symbol_editor/symbol_editor.cpp b/eeschema/symbol_editor/symbol_editor.cpp index 7369dcebd7..62a63ca76c 100644 --- a/eeschema/symbol_editor/symbol_editor.cpp +++ b/eeschema/symbol_editor/symbol_editor.cpp @@ -222,6 +222,8 @@ bool SYMBOL_EDIT_FRAME::LoadOneLibraryPartAux( LIB_PART* aEntry, const wxString& return false; } + m_toolManager->RunAction( ACTIONS::cancelInteractive, true ); + // Symbols from the schematic are edited in place and not managed by the library manager. if( IsSymbolFromSchematic() ) {