diff options
| author | Jakub Stachowski <[email protected]> | 2007-11-28 19:44:44 +0000 |
|---|---|---|
| committer | Jakub Stachowski <[email protected]> | 2007-11-28 19:44:44 +0000 |
| commit | 51e6281fe8c5ef2912a2400a7e5e95a4e721451d (patch) | |
| tree | 161422df84ce674386bdb5877048d2de5ef602fa /src | |
| parent | eac29a517cc54c610a16815fd6ec718f92f5e5ba (diff) | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinpart.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
