diff options
author | Arno <arno@disconnect.de> | 2018-04-03 06:14:35 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-04-03 06:14:35 +0200 |
commit | d261247e5f79f53544c4d0d8b20f37f754622adb (patch) | |
tree | 6e9ff7624c16f1ce6a4b996851450e3bda168040 | |
parent | 89eaa06a8c5f437c4819cbe1d5c3cc9bce9c3240 (diff) | |
download | SheMov-d261247e5f79f53544c4d0d8b20f37f754622adb.tar.gz SheMov-d261247e5f79f53544c4d0d8b20f37f754622adb.tar.bz2 SheMov-d261247e5f79f53544c4d0d8b20f37f754622adb.zip |
FSWidget: change 2 icons and add separators
-rw-r--r-- | fswidget.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fswidget.cpp b/fswidget.cpp index d3969f0..cdeb839 100644 --- a/fswidget.cpp +++ b/fswidget.cpp @@ -64,11 +64,12 @@ void FSWidget::setupWidget(){ connect(archiveMovieA, &QAction::triggered, this, &FSWidget::archiveMovie); connect(mMovieWizard, &NewMovieWizard::accepted, this, &FSWidget::refresh); toolbar->addAction(archiveMovieA); - QAction *archivePicsA = new QAction(QIcon(":/bald_pussy.png"), tr("Archive pics..."), this); + QAction *archivePicsA = new QAction(QIcon(":/french_maid_dress.png"), tr("Archive pics..."), this); connect(archivePicsA, &QAction::triggered, this, &FSWidget::archivePics); connect(mNewPicsDlg, &NewPicsDialog::accepted, this, &FSWidget::refresh); toolbar->addAction(archivePicsA); - QAction *unpackA = new QAction(QIcon(":/clitoris.png"), tr("Unpack"), this); + toolbar->addSeparator(); + QAction *unpackA = new QAction(QIcon(":/dog_hood.png"), tr("Unpack"), this); connect(unpackA, &QAction::triggered, this, &FSWidget::unpack); toolbar->addAction(unpackA); QAction *previewA = new QAction(QIcon(":/snapshot.png"), tr("Preview..."), this); @@ -162,7 +163,7 @@ void FSWidget::setupWidget(){ mFileView->sortByColumn(0, Qt::AscendingOrder); connect(mFileView->selectionModel(), &QItemSelectionModel::selectionChanged, this, &FSWidget::calculateSelectionChanged); - mFileView->addActions(QList<QAction*>() << playSelectedA << playRepeatMA << mPlayWithA << Helper::createSeparator(this) << backA << forwardA << Helper::createSeparator(this) << refreshA << deleteFilesA << Helper::createSeparator(this) << archiveMovieA << archivePicsA << unpackA << previewA << selectFilterA << unselectAllA); + mFileView->addActions(QList<QAction*>() << playSelectedA << playRepeatMA << mPlayWithA << Helper::createSeparator(this) << backA << forwardA << Helper::createSeparator(this) << refreshA << deleteFilesA << Helper::createSeparator(this) << archiveMovieA << archivePicsA << Helper::createSeparator(this) << unpackA << previewA << selectFilterA << unselectAllA); QVBoxLayout *mainLayout = new QVBoxLayout; mainLayout->addLayout(topWL); |