From 056b2164a87624773b7bbdc4ef4ecfb6a0714c65 Mon Sep 17 00:00:00 2001 From: garak Date: Tue, 7 Sep 2021 13:51:48 -0400 Subject: [PATCH] draw event frame for pasted events --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 01ecc15c..26980d8d 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1528,7 +1528,6 @@ void MainWindow::paste() { case 0: { // can only paste currently selected metatiles on this tab - // can only paste events to this tab if (pasteObject["object"].toString() != "metatile_selection") { return; } @@ -1594,6 +1593,7 @@ void MainWindow::paste() { } editor->map->editHistory.push(new EventPaste(this->editor, editor->map, newEvents)); + updateObjects(); break; }