From c4d6ee065ebff1ca76f3e140ec58311632cfd13a Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Thu, 8 Jul 2021 19:49:26 +0100 Subject: [PATCH] Raise the AddPerspective Edit dialog to stop it being hidden --- src/Gui/Perspective.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Gui/Perspective.cpp b/src/Gui/Perspective.cpp index 5e14e5b4c..23fadd6cc 100644 --- a/src/Gui/Perspective.cpp +++ b/src/Gui/Perspective.cpp @@ -1780,6 +1780,9 @@ AddPerspectiveDialog::AddPerspectiveDialog(Context *context, QString &name, QStr connect(add, SIGNAL(clicked()), this, SLOT(addClicked())); connect(cancel, SIGNAL(clicked()), this, SLOT(cancelClicked())); + + // want on top + raise(); } void