diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-03-11 11:14:36 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-03-25 09:22:26 +0200 |
commit | a99eefb018be1125afba0ee9d1b63f77de90b4b0 (patch) | |
tree | 483f64a20564209949930f32d0904d573a8ec819 /src/application.cpp | |
parent | Fix rekonq exit values, returning ZERO on success (diff) | |
download | rekonq-a99eefb018be1125afba0ee9d1b63f77de90b4b0.tar.xz |
Safe one bool check :D
Everytime a new window is called externally
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 65f2cf95..0eb08cee 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -203,7 +203,7 @@ int Application::newInstance() return 0; } - if (isRekonqCrashed && isFirstLoad) + if (isFirstLoad && isRekonqCrashed) { loadUrl(KUrl("about:closedTabs"), Rekonq::NewWindow); QTimer::singleShot(1000, mainWindow()->currentTab(), SLOT(showMessageBar())); |