From 5cf1fcfa0fa3b9b522c5dbb5043b38ff3293fe6e Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 27 Feb 2006 00:07:42 +0000 Subject: [PATCH] add missing status in iconsets --- src/roster_window.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/roster_window.py b/src/roster_window.py index 977d38a71..d99f486d7 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -2362,14 +2362,15 @@ _('If "%s" accepts this request you will know his or her status.') % jid) imgs = {} path += '/' if transport: - list = ('online', 'chat', 'away', 'xa', 'dnd', 'offline') + list = ('online', 'chat', 'away', 'xa', 'dnd', 'offline', + 'not in roster') else: list = ('connecting', 'online', 'chat', 'away', 'xa', 'dnd', 'invisible', 'offline', 'error', 'requested', 'message', 'opened', 'closed', 'not in roster', 'muc_active', 'muc_inactive') if pixbuf2: list = ('connecting', 'online', 'chat', 'away', 'xa', 'dnd', - 'offline', 'error', 'requested', 'message') + 'offline', 'error', 'requested', 'message', 'not in roster') for state in list: # try to open a pixfile with the correct method state_file = state.replace(' ', '_')