summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-08-11 01:37:46 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-08-11 01:37:46 +0200
commit9133b9a5cb7889e28d0ec7d14e0599fdff471241 (patch)
treefb30d29d7e229c43ac5dc7b634087d84a64dfc82 /src/application.cpp
parentrekonq 0.5.54 (diff)
downloadrekonq-9133b9a5cb7889e28d0ec7d14e0599fdff471241.tar.xz
Delaying single shots to let rekonq have more time to show itself before...
It seems working pretty well here. Ready to revert if something seems wrong about this
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp3
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;