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

Change color of XA status

parent 1cff6a34
No related branches found
No related tags found
No related merge requests found
......@@ -677,9 +677,9 @@ def generate_account_badge(account):
def get_css_show_class(show):
if show in ('online', 'chat'):
return '.gajim-status-online'
if show in ('away', 'xa'):
if show == 'away':
return '.gajim-status-away'
if show == 'dnd':
if show in ('dnd', 'xa'):
return '.gajim-status-dnd'
# 'offline', 'not in roster', 'requested'
return '.gajim-status-offline'
......
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