From ddcf546a4a6647a6b439d608814ececc5b8c11c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez=20L=C3=B3pez?= Date: Tue, 25 Sep 2007 21:27:47 +0000 Subject: [PATCH] Revert as it doesn't fix the problem completely... diving into this... sorry CCMAIL: peter.penz@gmx.at svn path=/trunk/KDE/kdebase/apps/; revision=717031 --- src/dolphinview.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 5f7fc11480..a85e2db9ba 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; }