diff options
author | Ken Moore <moorekou@gmail.com> | 2015-09-16 16:50:18 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-09-16 16:50:18 -0400 |
commit | 5ddd93a359caca3ce1715f2b927371484ae9ec5a (patch) | |
tree | 9ce2b3ac517acfc0d03bf9acc58496aa210053f1 /lumina-fm | |
parent | Change the names of a couple panel plugins: (diff) | |
download | lumina-5ddd93a359caca3ce1715f2b927371484ae9ec5a.tar.gz lumina-5ddd93a359caca3ce1715f2b927371484ae9ec5a.tar.bz2 lumina-5ddd93a359caca3ce1715f2b927371484ae9ec5a.zip |
Always run the "loadSnaps" signal on dir load - this should ensure that no snapshots were removed while the user was browsing the dir.
Diffstat (limited to 'lumina-fm')
-rw-r--r-- | lumina-fm/widgets/DirWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-fm/widgets/DirWidget.cpp b/lumina-fm/widgets/DirWidget.cpp index ba6929e0..4625b082 100644 --- a/lumina-fm/widgets/DirWidget.cpp +++ b/lumina-fm/widgets/DirWidget.cpp @@ -234,8 +234,8 @@ void DirWidget::LoadDir(QString dir, QList<LFileInfo> list){ ui->group_snaps->setEnabled(false); //to prevent the snap updates to be automatically used ui->group_snaps->setVisible(false); ui->slider_snap->setRange(1,1); - emit findSnaps(ID, normalbasedir); } + emit findSnaps(ID, normalbasedir); if(DEBUG){ qDebug() << "Update History:" <<time.elapsed(); } //Now update the history for this browser //qDebug() << "History:" << history << normalbasedir << lastbasedir; |