From 3ee72031a4be4699d5910ac5e6e4a117ea5208cd Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Mon, 8 Oct 2018 04:11:11 -0700 Subject: [PATCH] pcbnew: Follow cursor when editing polygon Fixes: lp:1796721 * https://bugs.launchpad.net/kicad/+bug/1796721 --- pcbnew/tools/point_editor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcbnew/tools/point_editor.cpp b/pcbnew/tools/point_editor.cpp index 7ad587e1b2..0f4f49bebb 100644 --- a/pcbnew/tools/point_editor.cpp +++ b/pcbnew/tools/point_editor.cpp @@ -356,6 +356,7 @@ int POINT_EDITOR::OnSelectionChange( const TOOL_EVENT& aEvent ) { commit.StageItems( selection, CHT_MODIFY ); + controls->ForceCursorPosition( false ); m_original = *m_editedPoint; // Save the original position controls->SetAutoPan( true ); modified = true;