From 36de7b63ff0934cf2e370673592928ba26ff2150 Mon Sep 17 00:00:00 2001 From: Marcus Huderle Date: Sat, 15 Oct 2022 12:49:29 -0500 Subject: [PATCH] Fix event frame window visibility issue --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 29b6244a..2f18e2b1 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -2060,8 +2060,8 @@ void MainWindow::updateSelectedObjects() { scrollTarget->setWidget(target); for (QFrame *frame : frames) { - frame->show(); layout->addWidget(frame); + frame->show(); } layout->addStretch(1);