From 9ae17062a51c62cdb3e61a98ac27c00de5889473 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Wed, 14 Jan 2026 18:36:37 -0500 Subject: [PATCH] GUI: fix selection moving when selecting using key board issue #2664 --- src/gui/editing.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/editing.cpp b/src/gui/editing.cpp index b3536c918..bac9982f4 100644 --- a/src/gui/editing.cpp +++ b/src/gui/editing.cpp @@ -1973,6 +1973,8 @@ void FurnaceGUI::doDrag(bool copy) { void FurnaceGUI::moveSelected(int x, int y) { SelectionPoint selStartOld, selEndOld, selStartNew, selEndNew; + finishSelection(); + selStartOld=selStart; selEndOld=selEnd;