diff options
author | mathieui <mathieui@mathieui.net> | 2013-03-03 13:13:15 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-03-03 13:13:15 +0100 |
commit | 3d98f48ba21e83df50e18ea5e7800aad19f5d5b4 (patch) | |
tree | 65282ac2e501cd6135f1901fb7950a61b1463ac2 /src/theming.py | |
parent | f84e3d19282641944373a0a02b6406fa03f712cd (diff) | |
download | poezio-3d98f48ba21e83df50e18ea5e7800aad19f5d5b4.tar.gz poezio-3d98f48ba21e83df50e18ea5e7800aad19f5d5b4.tar.bz2 poezio-3d98f48ba21e83df50e18ea5e7800aad19f5d5b4.tar.xz poezio-3d98f48ba21e83df50e18ea5e7800aad19f5d5b4.zip |
Fix #2182 (show s2s errors)
- Add the theming options COLOR_ROSTER_ERROR, CHAR_ROSTER_ERRROR, and
CHAR_ROSTER_ASKED
Diffstat (limited to 'src/theming.py')
-rw-r--r-- | src/theming.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/theming.py b/src/theming.py index 41fabaf0..27397fe2 100644 --- a/src/theming.py +++ b/src/theming.py @@ -196,7 +196,10 @@ class Theme(object): CHAR_KICK = '-!-' CHAR_COLUMN_ASC = ' ▲' CHAR_COLUMN_DESC =' ▼' + CHAR_ROSTER_ERROR = '✖' + CHAR_ROSTER_ASKED = '?' + COLOR_ROSTER_ERROR = (1, -1) COLOR_JOIN_CHAR = (4, -1) COLOR_QUIT_CHAR = (1, -1) COLOR_KICK_CHAR = (1, -1) |