aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/widgets/DirWidget.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-10-08 11:21:38 -0400
committerKen Moore <moorekou@gmail.com>2015-10-08 11:21:38 -0400
commit13d170e92dc2c8c649956ac5af9800172fbfd4f9 (patch)
tree6b240c998aee9125c7d167f526cb6c17808cac88 /lumina-fm/widgets/DirWidget.h
parentAdd a hidden option to lumina-open to test the crash handler (-testcrash). Th... (diff)
downloadlumina-13d170e92dc2c8c649956ac5af9800172fbfd4f9.tar.gz
lumina-13d170e92dc2c8c649956ac5af9800172fbfd4f9.tar.bz2
lumina-13d170e92dc2c8c649956ac5af9800172fbfd4f9.zip
Ensure that item selection is preserved when switching between basic/detailed list modes in lumina-fm.
Diffstat (limited to 'lumina-fm/widgets/DirWidget.h')
-rw-r--r--lumina-fm/widgets/DirWidget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-fm/widgets/DirWidget.h b/lumina-fm/widgets/DirWidget.h
index 5452edf1..d9573150 100644
--- a/lumina-fm/widgets/DirWidget.h
+++ b/lumina-fm/widgets/DirWidget.h
@@ -77,7 +77,7 @@ private:
QString ID, CDIR; //unique ID assigned by the parent and the current dir path
LFileInfoList CLIST; //current item list (snap or not)
QString normalbasedir, snapbasedir, snaprelpath; //for maintaining directory context while moving between snapshots
- QStringList snapshots, needThumbs;
+ QStringList snapshots, needThumbs, tmpSel;
bool showDetails, showThumbs, canmodify, stopload; //which widget to use for showing items
QList<DETAILTYPES> listDetails;
QMenu *contextMenu;
bgstack15