diff options
author | Ken Moore <moorekou@gmail.com> | 2015-10-14 14:47:33 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-10-14 14:47:33 -0400 |
commit | 46fd4f4d4e41f4d9b89c1549c6bc678d74476687 (patch) | |
tree | f56173a3859036a35811830aacdae6ca0d809890 /lumina-fm/FODialog.cpp | |
parent | Clean up some more of lumina-fm: (diff) | |
download | lumina-46fd4f4d4e41f4d9b89c1549c6bc678d74476687.tar.gz lumina-46fd4f4d4e41f4d9b89c1549c6bc678d74476687.tar.bz2 lumina-46fd4f4d4e41f4d9b89c1549c6bc678d74476687.zip |
Fix a crash in the thumbnail loading routine where an invalid item can accidentally get passed through to the loading mechanisms (usually after a drop event or other file operations).
Diffstat (limited to 'lumina-fm/FODialog.cpp')
-rw-r--r-- | lumina-fm/FODialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-fm/FODialog.cpp b/lumina-fm/FODialog.cpp index 5d20e3be..34d5ec6c 100644 --- a/lumina-fm/FODialog.cpp +++ b/lumina-fm/FODialog.cpp @@ -372,4 +372,5 @@ void FOWorker::slotStartOperations(){ //All finished, emit the signal errlist.removeAll(""); //make sure to clear any empty items emit finished(errlist); + qDebug() << "Done with File Operations"; } |