diff options
| author | Rafael Fernández López <[email protected]> | 2007-12-04 01:23:05 +0000 |
|---|---|---|
| committer | Rafael Fernández López <[email protected]> | 2007-12-04 01:23:05 +0000 |
| commit | 0fc7e4af53e6f97c42fbd9df43ba80ff185600fb (patch) | |
| tree | 789f192b3452e2636c91e6e5eed0729287dc7a6c | |
| parent | 1e4257b684ee9147e26c6ebd4aace3c353585b32 (diff) | |
Makes sense that when sorting by permissions what we want to see first is the most permissive groups, and the most restrictive groups at the end
svn path=/trunk/KDE/kdebase/apps/; revision=744654
| -rw-r--r-- | src/dolphinmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmodel.cpp b/src/dolphinmodel.cpp index 75cae0627..f541fe20c 100644 --- a/src/dolphinmodel.cpp +++ b/src/dolphinmodel.cpp @@ -272,7 +272,7 @@ QVariant DolphinModel::data(const QModelIndex &index, int role) const { QFileInfo info(item.url().pathOrUrl()); - retVariant = KDirSortFilterProxyModel::pointsForPermissions(info); + retVariant = -KDirSortFilterProxyModel::pointsForPermissions(info); break; } |
