diff options
| author | Rafael Fernández López <[email protected]> | 2007-09-25 21:27:47 +0000 |
|---|---|---|
| committer | Rafael Fernández López <[email protected]> | 2007-09-25 21:27:47 +0000 |
| commit | ddcf546a4a6647a6b439d608814ececc5b8c11c9 (patch) | |
| tree | 89180278677876301630e4522fb0e1cd55828e4a | |
| parent | 2c689ca4f7c8dfe62c75dc3c93ac9df2f31c0a8c (diff) | |
Revert as it doesn't fix the problem completely... diving into this... sorry
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=717031
| -rw-r--r-- | src/dolphinview.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 5f7fc1148..a85e2db9b 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -219,12 +219,7 @@ bool DolphinView::showHiddenFiles() const void DolphinView::setCategorizedSorting(bool categorized) { - if (categorized && !supportsCategorizedSorting()) { - setCategorizedSorting(false); - return; - } - - if (categorized == categorizedSorting()) { + if (!supportsCategorizedSorting() || (categorized == categorizedSorting())) { return; } |
