diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-16 20:43:17 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-16 20:43:17 +0100 |
commit | 27e587118bac2ee70a076875f0fb9fddcc334c9b (patch) | |
tree | c4796d375df2779095eb33014d3b72e44babad54 /src/windows.py | |
parent | b2c84055dff5284a36d4bbb3311fd1532f530f56 (diff) | |
parent | cae620e3efea2ed3428a8c3076cc8696431723e8 (diff) | |
download | poezio-27e587118bac2ee70a076875f0fb9fddcc334c9b.tar.gz poezio-27e587118bac2ee70a076875f0fb9fddcc334c9b.tar.bz2 poezio-27e587118bac2ee70a076875f0fb9fddcc334c9b.tar.xz poezio-27e587118bac2ee70a076875f0fb9fddcc334c9b.zip |
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'src/windows.py')
-rw-r--r-- | src/windows.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/windows.py b/src/windows.py index 54cf82af..8b723b1e 100644 --- a/src/windows.py +++ b/src/windows.py @@ -233,11 +233,11 @@ class UserList(Win): else: show_col = self.color_show[user.show]() if user.chatstate == 'composing': - char = 'X' + char = get_theme().CHAR_CHATSTATE_COMPOSING elif user.chatstate == 'active': - char = 'A' + char = get_theme().CHAR_CHATSTATE_ACTIVE elif user.chatstate == 'paused': - char = 'p' + char = get_theme().CHAR_CHATSTATE_PAUSED else: char = get_theme().CHAR_STATUS self.addstr(y, 0, char, to_curses_attr(show_col)) |