From 3975e79c30a6078674f98c3ef04bf19d3f06fd5b 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(); }