From 22a42eaac16ec62c395a47db0fca9c761b7ee217 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Tue, 5 Jul 2022 14:50:17 -0400 Subject: [PATCH] Select newly-pasted events --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 91bd32bc..3aea04ec 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1654,8 +1654,8 @@ void MainWindow::paste() { } if (!newEvents.isEmpty()) { - editor->map->editHistory.push(new EventPaste(this->editor, editor->map, newEvents)); updateObjects(); + editor->map->editHistory.push(new EventPaste(this->editor, editor->map, newEvents)); } break; }