diff options
author | Arno <am@disconnect.de> | 2013-03-20 21:27:35 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-03-20 21:27:35 +0100 |
commit | 03831d3669ea49a99a15aaf5d17724be8c533b85 (patch) | |
tree | 618e3fe63b0430a4dbe604153ab588eb811fd183 /shemov.cpp | |
parent | 457e5328c8fbbf236fb163e90d732a35a583fd2d (diff) | |
download | SheMov-03831d3669ea49a99a15aaf5d17724be8c533b85.tar.gz SheMov-03831d3669ea49a99a15aaf5d17724be8c533b85.tar.bz2 SheMov-03831d3669ea49a99a15aaf5d17724be8c533b85.zip |
Use a Thread for collecting file data
blocking the GUI isn't nice, so use a separate Thread to gather all the
data for SmDirModel. Populating and changing directory works, but
modifying a file is most likely broken.
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,7 @@ SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, fla splash.finish(this); mATree->seriesWidget()->readSettings(); mATree->filesWidget()->filesTree()->readSettings(); - mFSWidget->readSettings(); + mFSWidget->readSettings(); readSettings(); mFSWidget->fileView()->setFocus(Qt::ActiveWindowFocusReason); mATree->filesWidget()->filesTree()->header()->resizeSections(QHeaderView::ResizeToContents); |