]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Revert as it doesn't fix the problem completely... diving into this... sorry
authorRafael Fernández López <ereslibre@kde.org>
Tue, 25 Sep 2007 21:27:47 +0000 (21:27 +0000)
committerRafael Fernández López <ereslibre@kde.org>
Tue, 25 Sep 2007 21:27:47 +0000 (21:27 +0000)
CCMAIL: peter.penz@gmx.at

svn path=/trunk/KDE/kdebase/apps/; revision=717031

src/dolphinview.cpp

index 5f7fc11480b24117f0fb027641c0cebef931b4fe..a85e2db9ba482c08c420c825421f242ff954eabe 100644 (file)
@@ -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;
     }