diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-07-04 22:54:38 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-07-04 22:54:38 +0200 |
commit | d9cc0aac4da1f0716bfc6cff74acb829128a813d (patch) | |
tree | 6e8e60ff71ff448cdaebb8f61d20e3a35f01a48d /src/windows.py | |
parent | 3dbf9228d8c76a4105af63d2b5b1efedcb5c437f (diff) | |
parent | e56b8d9853bae436ccd2845ae63c6b30fa628cad (diff) | |
download | poezio-d9cc0aac4da1f0716bfc6cff74acb829128a813d.tar.gz poezio-d9cc0aac4da1f0716bfc6cff74acb829128a813d.tar.bz2 poezio-d9cc0aac4da1f0716bfc6cff74acb829128a813d.tar.xz poezio-d9cc0aac4da1f0716bfc6cff74acb829128a813d.zip |
Merge these forgotten commits as well.
Diffstat (limited to 'src/windows.py')
-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 9294988b..d4d9b2a7 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)) |