From fcb9e39639839a3abe7a4732480d2a214c609b53 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Tue, 6 Mar 2018 21:27:32 +0000 Subject: [PATCH] Force Log QSO window to top without being modal nor losing the task bar icon git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8542 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- logqso.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logqso.cpp b/logqso.cpp index 3fa454c6a..7b0e26304 100644 --- a/logqso.cpp +++ b/logqso.cpp @@ -17,7 +17,7 @@ LogQSO::LogQSO(QString const& programTitle, QSettings * settings , Configuration const * config, QWidget *parent) - : QDialog(parent) + : QDialog {parent, Qt::WindowStaysOnTopHint | Qt::WindowTitleHint | Qt::WindowSystemMenuHint} , ui(new Ui::LogQSO) , m_settings (settings) , m_config {config}