add missing status in iconsets
This commit is contained in:
parent
ac8121d802
commit
5cf1fcfa0f
1 changed files with 3 additions and 2 deletions
|
@ -2362,14 +2362,15 @@ _('If "%s" accepts this request you will know his or her status.') % jid)
|
||||||
imgs = {}
|
imgs = {}
|
||||||
path += '/'
|
path += '/'
|
||||||
if transport:
|
if transport:
|
||||||
list = ('online', 'chat', 'away', 'xa', 'dnd', 'offline')
|
list = ('online', 'chat', 'away', 'xa', 'dnd', 'offline',
|
||||||
|
'not in roster')
|
||||||
else:
|
else:
|
||||||
list = ('connecting', 'online', 'chat', 'away', 'xa', 'dnd',
|
list = ('connecting', 'online', 'chat', 'away', 'xa', 'dnd',
|
||||||
'invisible', 'offline', 'error', 'requested', 'message', 'opened',
|
'invisible', 'offline', 'error', 'requested', 'message', 'opened',
|
||||||
'closed', 'not in roster', 'muc_active', 'muc_inactive')
|
'closed', 'not in roster', 'muc_active', 'muc_inactive')
|
||||||
if pixbuf2:
|
if pixbuf2:
|
||||||
list = ('connecting', 'online', 'chat', 'away', 'xa', 'dnd',
|
list = ('connecting', 'online', 'chat', 'away', 'xa', 'dnd',
|
||||||
'offline', 'error', 'requested', 'message')
|
'offline', 'error', 'requested', 'message', 'not in roster')
|
||||||
for state in list:
|
for state in list:
|
||||||
# try to open a pixfile with the correct method
|
# try to open a pixfile with the correct method
|
||||||
state_file = state.replace(' ', '_')
|
state_file = state.replace(' ', '_')
|
||||||
|
|
Loading…
Add table
Reference in a new issue