From: Peter Penz Date: Fri, 26 Nov 2010 18:38:33 +0000 (+0000) Subject: Assure that the directory lister gets updated when changing the URL X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/c520572f5d15a3c3bf83956eb1a19316a6b2952b?ds=inline Assure that the directory lister gets updated when changing the URL svn path=/trunk/KDE/kdebase/apps/; revision=1201096 --- diff --git a/src/views/dolphincolumnview.cpp b/src/views/dolphincolumnview.cpp index 4acdd97b5..02b4b62e3 100644 --- a/src/views/dolphincolumnview.cpp +++ b/src/views/dolphincolumnview.cpp @@ -197,7 +197,10 @@ KUrl DolphinColumnView::childUrl() const void DolphinColumnView::setUrl(const KUrl& url) { - m_url = url; + if (url != m_url) { + m_url = url; + m_dirLister->openUrl(url, KDirLister::NoFlags); + } } KUrl DolphinColumnView::url() const