diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/windows.py | 4 |
1 files changed, 4 insertions, 0 deletions
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)) |