From c11770822041826cd44b63605145159152a31a5c Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 14 May 2022 22:38:04 +0100 Subject: [PATCH] Unset forced cursor before leaving two-click place. Fixes https://gitlab.com/kicad/code/kicad/issues/11607 (cherry picked from commit 79a0ce9137362b3db6c1a69fea343637657bc3ea) --- eeschema/tools/symbol_editor_drawing_tools.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/tools/symbol_editor_drawing_tools.cpp b/eeschema/tools/symbol_editor_drawing_tools.cpp index 26c099dcac..60743e926e 100644 --- a/eeschema/tools/symbol_editor_drawing_tools.cpp +++ b/eeschema/tools/symbol_editor_drawing_tools.cpp @@ -290,6 +290,7 @@ int SYMBOL_EDITOR_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent ) controls->SetAutoPan( false ); controls->CaptureCursor( false ); + controls->ForceCursorPosition( false ); m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW ); return 0; }