Skip to content
Snippets Groups Projects
Commit 1c1fb442 authored by Alexander Cherniuk's avatar Alexander Cherniuk
Browse files

Make GCTooltip behave more like the RosterTooltip

parent 614c1f8a
No related branches found
No related tags found
No related merge requests found
......@@ -366,10 +366,10 @@ class GCTooltip(BaseTooltip):
status = '<i>' +\
gobject.markup_escape_text(status) + '</i>'
properties.append((status, None))
else: # no status message, show SHOW instead
show = helpers.get_uf_show(contact.show)
show = self.colorize_status(show)
properties.append((show, None))
show = helpers.get_uf_show(contact.show)
show = self.colorize_status(show)
properties.append((show, None))
if contact.jid.strip() != '':
properties.append((_('Jabber ID: '), contact.jid))
......
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