[pim/pim-sieve-editor] src: It's not from icon theme
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit acf1b5355f0b9f54a613cf353abde4a5624d1e14 by Laurent Montel.
Committed on 14/08/2026 at 05:02.
Pushed by mlaurent into branch 'master'.
It's not from icon theme
M +1 -1 src/sieveeditormainwindow.cpp
https://invent.kde.org/pim/pim-sieve-editor/-/commit/acf1b5355f0b9f54a613cf353abde4a5624d1e14
diff --git a/src/sieveeditormainwindow.cpp b/src/sieveeditormainwindow.cpp
index df4d3173..cd9b3489 100644
--- a/src/sieveeditormainwindow.cpp
+++ b/src/sieveeditormainwindow.cpp
@@ -395,7 +395,7 @@ void SieveEditorMainWindow::setupActions()
mShowMenuBarAction->setChecked(SieveEditorGlobalConfig::self()->showMenuBar());
slotToggleMenubar(true);
- auto showWhatsNewAction = new QAction(QIcon::fromTheme(QStringLiteral(":/sieveeditor/sieveeditor.svg")), i18n("What's new"), this);
+ auto showWhatsNewAction = new QAction(QIcon(QStringLiteral(":/sieveeditor/sieveeditor.svg")), i18n("What's new"), this);
ac->addAction(QStringLiteral("whatsnew"), showWhatsNewAction);
connect(showWhatsNewAction, &QAction::triggered, this, &SieveEditorMainWindow::slotWhatsNew);
}