diff options
author | Arno <arno@disconnect.de> | 2016-09-03 07:31:28 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2016-09-03 07:31:28 +0200 |
commit | 9ccd31690b5d982588bcb9be1988c682233aabb8 (patch) | |
tree | e6d09554a81ec8ac43b6323ba3d883a4dfe5a493 /filesorter.cpp | |
parent | c3cfc9dd9d94a3c3ce2d58c0ec9320c03489f496 (diff) | |
download | ShemovCleaner-9ccd31690b5d982588bcb9be1988c682233aabb8.tar.gz ShemovCleaner-9ccd31690b5d982588bcb9be1988c682233aabb8.tar.bz2 ShemovCleaner-9ccd31690b5d982588bcb9be1988c682233aabb8.zip |
Implement doubleClicked in FileWidget
Navigate through the filesystem by doubleclicking directories.
Rename enums from Row to Column, since it *are* columns. I'm not very
good at naming things...
Diffstat (limited to 'filesorter.cpp')
-rw-r--r-- | filesorter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filesorter.cpp b/filesorter.cpp index b155a7c..a3bbf5a 100644 --- a/filesorter.cpp +++ b/filesorter.cpp @@ -33,7 +33,7 @@ bool VideoSorter::lessThan(const QModelIndex &source_left, const QModelIndex &so } //now check if we're sorting IconRow - if(source_left.column() == FileWidget::IconRow){ + if(source_left.column() == FileWidget::IconColumn){ return leftData < rightData; } |