From 40d445e509dd5643150869862d608562ff5a01c0 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Tue, 14 Jun 2011 22:20:04 +0200 Subject: I add a char to show the active and paused chatstates in muc user lists --- src/windows.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/windows.py b/src/windows.py index eb6dde43..1d54f7ed 100644 --- a/src/windows.py +++ b/src/windows.py @@ -196,6 +196,10 @@ class UserList(Win): show_col = self.color_show[user.show] if user.chatstate == 'composing': char = 'X' + elif user.chatstate == 'active': + char = 'A' + elif user.chatstate == 'paused': + char = 'p' else: char = theme.CHAR_STATUS self.addstr(y, 0, char, common.curses_color_pair(show_col)) -- cgit v1.2.3