diff options
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 71693a7a..8a24014d 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -224,7 +224,8 @@ int Application::newInstance() if(isFirstLoad) { - QTimer::singleShot(0, this, SLOT(postLaunch())); + // give me some time to do the other things.. + QTimer::singleShot(100, this, SLOT(postLaunch())); } return exitValue; |