From 51e6281fe8c5ef2912a2400a7e5e95a4e721451d Mon Sep 17 00:00:00 2001 From: Jakub Stachowski Date: Wed, 28 Nov 2007 19:44:44 +0000 Subject: [PATCH] When listing already visited dir, completed() would be emitted from within setUrl, before emit started(0) making konq logo spinning indefinitely. svn path=/trunk/KDE/kdebase/apps/; revision=742730 --- src/dolphinpart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index 5e64a14fe..e25c2882f 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -197,10 +197,10 @@ bool DolphinPart::openUrl(const KUrl& url) const QString prettyUrl = url.pathOrUrl(); emit setWindowCaption(prettyUrl); emit m_extension->setLocationBarUrl(prettyUrl); + emit started(0); // get the wheel to spin m_view->setUrl(url); if (reload) m_view->reload(); - emit started(0); // get the wheel to spin return true; } -- 2.47.3