diff options
author | Arno <arno@disconnect.de> | 2018-04-03 06:25:48 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-04-03 06:25:48 +0200 |
commit | 2213d00d25b6b3127e33a0df63cae54d29748d06 (patch) | |
tree | 8005412b1e7afa8e012a5364336adf0b347ae912 /shemov.cpp | |
parent | d261247e5f79f53544c4d0d8b20f37f754622adb (diff) | |
download | SheMov-2213d00d25b6b3127e33a0df63cae54d29748d06.tar.gz SheMov-2213d00d25b6b3127e33a0df63cae54d29748d06.tar.bz2 SheMov-2213d00d25b6b3127e33a0df63cae54d29748d06.zip |
FSWidget: add configure action
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -71,6 +71,7 @@ SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, fla setDuration(duration, false); }); connect(mFileWidget, &FSWidget::needRefreshFs, this, &SheMov::setFsFree); + connect(mFileWidget, &FSWidget::needConfig, this, &SheMov::configure); //experimental splash.showMessage(tr("Creating Movie archive..."), Qt::AlignHCenter, Qt::yellow); @@ -149,6 +150,7 @@ SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, fla connect(this, &SheMov::configChanged, mFSWidget->fileView(), &FileView::readConfig); connect(this, &SheMov::configChanged, picViewer, &PictureViewer2::readSettings); connect(this, &SheMov::configChanged, c->archiveTreeModel(), &ArchiveModel::readConfig); + connect(this, &SheMov::configChanged, mFileWidget, &FSWidget::readSettings); connect(mFSWidget, &FilesystemWidget::mounted, this, &SheMov::checkMount); QWidget *centralWidget = new QWidget; |