From 53746b7ffb1d502413ca4d5c74dff5dc0f73de20 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 30 May 2005 09:50:14 +0000 Subject: [PATCH] bugfix: show id 'chat', not 'free' --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index 6a92ca600..39a593662 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -1390,7 +1390,7 @@ class Roster_window: jid2 = model.get_value(iter2, 3) luser1 = self.contacts[account][jid1] luser2 = self.contacts[account][jid2] - cshow = {'online':0, 'free': 1, 'away':2, 'xa':3, 'dnd':4, + cshow = {'online':0, 'chat': 1, 'away':2, 'xa':3, 'dnd':4, 'invisible':5, 'offline':6, 'error':7} show1 = cshow[self.get_show(luser1)] show2 = cshow[self.get_show(luser2)]