From cc445391e980eb1231580d53a6bd66c4dbbb3ee3 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Mon, 7 Apr 2014 13:59:27 +0200 Subject: [PATCH] Items that may be modified using EDIT_POINTs used to stay selected after pressing ESC (only EDIT_POINTs got away) - fixed. --- pcbnew/tools/point_editor.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pcbnew/tools/point_editor.cpp b/pcbnew/tools/point_editor.cpp index f4aa4baa17..1b6ed99e20 100644 --- a/pcbnew/tools/point_editor.cpp +++ b/pcbnew/tools/point_editor.cpp @@ -315,6 +315,9 @@ int POINT_EDITOR::OnSelectionChange( TOOL_EVENT& aEvent ) modified = false; } + // Let the selection tool receive the event too + m_toolMgr->PassEvent(); + break; }