diff options
| author | Peter Penz <[email protected]> | 2008-02-16 13:16:59 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-02-16 13:16:59 +0000 |
| commit | 67f36d71e78c2c64500229150d262b621f69fe54 (patch) | |
| tree | bb62c026be3e51648347411be9aa03b2bf3e70f9 /src/dolphinview.cpp | |
| parent | 0706655eab026b9ab328e1b56292655281ad0596 (diff) | |
Provide an option for the details view to expand folders (= tree view), as this is required for Konqueror to get back this functionality from KDE 3. It is possible in Dolphin to enable this option too, but it is set to false per default.
BUG: 155571
svn path=/trunk/KDE/kdebase/apps/; revision=775621
Diffstat (limited to 'src/dolphinview.cpp')
| -rw-r--r-- | src/dolphinview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index b531c6f55..5ce9cb6e1 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -227,7 +227,7 @@ void DolphinView::setShowPreview(bool show) m_iconManager->setShowPreview(show); emit showPreviewChanged(); - loadDirectory(viewPropsUrl, true); + loadDirectory(viewPropsUrl); } bool DolphinView::showPreview() const @@ -248,7 +248,7 @@ void DolphinView::setShowHiddenFiles(bool show) m_dirLister->setShowingDotFiles(show); emit showHiddenFilesChanged(); - loadDirectory(viewPropsUrl, true); + loadDirectory(viewPropsUrl); } bool DolphinView::showHiddenFiles() const @@ -452,7 +452,7 @@ void DolphinView::setAdditionalInfo(KFileItemDelegate::InformationList info) if (itemView() != m_detailsView) { // the details view requires no reloading of the directory, as it maps // the file item delegate info to its columns internally - loadDirectory(viewPropsUrl, true); + loadDirectory(viewPropsUrl); } } |
