Use `quickwizard` icon consistently

This commit is contained in:
Martchus 2022-10-30 21:40:42 +01:00
parent 4357c4b5f6
commit f6845cd5c0
3 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ set(REQUIRED_ICONS
system-search
system-file-manager
text-x-generic
tools-wizard
quickwizard
view-refresh
window-close
window-pin)

View File

@ -79,7 +79,7 @@ set(REQUIRED_ICONS
emblem-remove
go-down
go-up
tools-wizard
quickwizard
help-contents)
set(QT_TESTS wizard)

View File

@ -1469,7 +1469,7 @@ void SettingsDialog::init()
auto *startWizardButton = new QPushButton(this);
startWizardButton->setToolTip(tr("Start wizard"));
startWizardButton->setIcon(
QIcon::fromTheme(QStringLiteral("tools-wizard"), QIcon(QStringLiteral(":/icons/hicolor/scalable/actions/tools-wizard.svg"))));
QIcon::fromTheme(QStringLiteral("quickwizard"), QIcon(QStringLiteral(":/icons/hicolor/scalable/actions/tools-wizard.svg"))));
startWizardButton->setFlat(true);
startWizardButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
connect(startWizardButton, &QPushButton::clicked, this, &SettingsDialog::wizardRequested);