┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Fernández López <[email protected]>2007-09-25 21:27:47 +0000
committerRafael Fernández López <[email protected]>2007-09-25 21:27:47 +0000
commitddcf546a4a6647a6b439d608814ececc5b8c11c9 (patch)
tree89180278677876301630e4522fb0e1cd55828e4a
parent2c689ca4f7c8dfe62c75dc3c93ac9df2f31c0a8c (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.cpp7
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;
}