From b758210c193114901fa0698658ef190b2a0d3c94 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Tue, 11 Mar 2014 18:11:34 -0300 Subject: [PATCH] Defer mainwindow->show() The mainwindow->show(); was being called before we parsed the dives, so in the case of a large dive file, we got a very quick, but spottable, gray background on the profile. The mainwindow->show(); now is called just before the Qt main-loop starts. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt-gui.cpp b/qt-gui.cpp index ff875f00d..2b16c2d77 100644 --- a/qt-gui.cpp +++ b/qt-gui.cpp @@ -151,7 +151,6 @@ void init_ui(int *argcp, char ***argvp) window = new MainWindow(); window->loadRecentFiles(&s); - window->show(); if (existing_filename && existing_filename[0] != '\0') window->setTitle(MWTF_FILENAME); else @@ -162,6 +161,7 @@ void init_ui(int *argcp, char ***argvp) void run_ui(void) { + window->show(); application->exec(); }