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:
parent
3c01271a1f
commit
0653dcdf7a
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user