From 0653dcdf7ad8e084ae68a52301a38c89a3379138 Mon Sep 17 00:00:00 2001 From: JosephMcc Date: Sat, 29 Apr 2017 03:00:45 -0700 Subject: [PATCH] Don't ignore icons from /usr/share/pixmaps This fixes some apps like Slack and WMail not showing the proper icon --- usr/lib/linuxmint/mintMenu/plugins/easybuttons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py b/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py index 89c23fe..04d0776 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py +++ b/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py @@ -88,7 +88,7 @@ class IconManager(GObject.GObject): image = Gtk.Image() icon_found = False for theme in self.themes: - if theme.has_icon( realIconName ): + if theme.lookup_icon(realIconName, 0, Gtk.IconLookupFlags.FORCE_REGULAR): icon_found = True break