From: Rafael Fernández López Date: Tue, 25 Sep 2007 21:27:47 +0000 (+0000) Subject: Revert as it doesn't fix the problem completely... diving into this... sorry X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/ddcf546a4a6647a6b439d608814ececc5b8c11c9 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 --- 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; }