Skip to content
Snippets Groups Projects
Commit 00f0de96 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

[appindicator] Remove avatar image from menu

Fixes #476
parent a50dbe5f
No related branches found
No related tags found
No related merge requests found
......@@ -182,15 +182,7 @@ class AppindicatorIntegrationPlugin(GajimPlugin):
event.time = when
if key not in self.events:
icon = None
if app.config.get("show_avatars_in_roster"):
pix = app.contacts.get_avatar(account, jid, size=16)
icon = Gtk.Image()
icon.set_from_pixbuf(pix)
item = Gtk.ImageMenuItem(contact + " (1)")
if icon:
item.set_image(icon)
item.set_always_show_image(True)
item = Gtk.MenuItem(label=contact + " (1)")
item.connect("activate", self.event_raise, event)
item.show()
self.menu.insert(item, self.menuEventInsertIndex)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment