Don't ignore icons from /usr/share/pixmaps

This fixes some apps like Slack and WMail not showing the proper icon
This commit is contained in:
JosephMcc 2017-04-29 03:00:45 -07:00
parent 3c01271a1f
commit 0653dcdf7a

View File

@ -88,7 +88,7 @@ class IconManager(GObject.GObject):
image = Gtk.Image() image = Gtk.Image()
icon_found = False icon_found = False
for theme in self.themes: for theme in self.themes:
if theme.has_icon( realIconName ): if theme.lookup_icon(realIconName, 0, Gtk.IconLookupFlags.FORCE_REGULAR):
icon_found = True icon_found = True
break break