From 2eda9eb8f7297aba27abd941db6b55fb2c6f06e2 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 13 Aug 2016 23:33:35 +0000 Subject: [PATCH] Ensure that splash screen is raosed to the top after startup git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7029 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/main.cpp b/main.cpp index 8e2708d8f..8c68925b5 100644 --- a/main.cpp +++ b/main.cpp @@ -331,6 +331,7 @@ int main(int argc, char *argv[]) // run the application UI MainWindow w(temp_dir, multiple, &multi_settings, &mem_jt9, downSampleFactor, new QNetworkAccessManager {&a}, &splash); w.show(); + splash.raise (); QObject::connect (&a, SIGNAL (lastWindowClosed()), &a, SLOT (quit())); result = a.exec(); }