diff --git a/nw/gui/mainmenu.py b/nw/gui/mainmenu.py
index a37ddf0c..c497823a 100644
--- a/nw/gui/mainmenu.py
+++ b/nw/gui/mainmenu.py
@@ -148,6 +148,7 @@ class GuiMainMenu(QMenuBar):
credits = "
".join(["%s%s" % (listPrefix, x) for x in nw.__credits__]),
)
theTheme = self.theParent.theTheme
+ theIcons = self.theParent.theTheme.theIcons
if theTheme.themeCredit != "" or theTheme.syntaxCredit != "":
aboutMsg += "
"
@@ -155,6 +156,10 @@ class GuiMainMenu(QMenuBar):
aboutMsg += "%s\"%s\" by %s
" % (
listPrefix, theTheme.themeName, theTheme.themeCredit
)
+ if theIcons.themeCredit != "":
+ aboutMsg += "%s\"%s\" by %s
" % (
+ listPrefix, theIcons.themeName, theIcons.themeCredit
+ )
if theTheme.syntaxCredit != "":
aboutMsg += "%s\"%s\" by %s
" % (
listPrefix, theTheme.syntaxName, theTheme.syntaxCredit