From 4f453d6b928f5a95cca00ebc8c49904cdd72b443 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 16 Sep 2022 16:43:44 +0100 Subject: [PATCH] Remove turning the cursor on in FocusOnLocation. We don't (at present) have any good way to turn it back off. Fixes https://gitlab.com/kicad/code/kicad/issues/12440 --- common/eda_draw_frame.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/common/eda_draw_frame.cpp b/common/eda_draw_frame.cpp index ddab07aae1..b93adf9f9d 100644 --- a/common/eda_draw_frame.cpp +++ b/common/eda_draw_frame.cpp @@ -953,7 +953,6 @@ void EDA_DRAW_FRAME::FocusOnLocation( const VECTOR2I& aPos ) } GetCanvas()->GetViewControls()->SetCrossHairCursorPosition( aPos ); - GetCanvas()->GetViewControls()->ShowCursor( true ); }