diff options
| author | Peter Penz <[email protected]> | 2010-11-26 18:38:33 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-11-26 18:38:33 +0000 |
| commit | c520572f5d15a3c3bf83956eb1a19316a6b2952b (patch) | |
| tree | 77ff630670d2592af7013a348dc773d6ecaae036 /src | |
| parent | 056bbd061df0426f7a28ecd9b093afd64a22ecf1 (diff) | |
Assure that the directory lister gets updated when changing the URL
svn path=/trunk/KDE/kdebase/apps/; revision=1201096
Diffstat (limited to 'src')
| -rw-r--r-- | src/views/dolphincolumnview.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
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 |
