diff options
author | Florent Le Coz <louiz@louiz.org> | 2012-01-26 10:08:43 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-01-26 10:08:43 +0100 |
commit | 7433510470beaa8f009a14d57952133e7dff82b0 (patch) | |
tree | 7062b30aa6ed68074c08b21e1550dd35409147a3 /src/theming.py | |
parent | a3344b11b2ea7ac17097b8db4b703bb9f6c02912 (diff) | |
parent | 17fdd5d60618ebc1e84a966b89e57c43fc6dd53a (diff) | |
download | poezio-7433510470beaa8f009a14d57952133e7dff82b0.tar.gz poezio-7433510470beaa8f009a14d57952133e7dff82b0.tar.bz2 poezio-7433510470beaa8f009a14d57952133e7dff82b0.tar.xz poezio-7433510470beaa8f009a14d57952133e7dff82b0.zip |
Merge branch 'master' of https://git.louiz.org/poezio
Conflicts:
src/theming.py
src/windows.py
Diffstat (limited to 'src/theming.py')
-rw-r--r-- | src/theming.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/theming.py b/src/theming.py index 96c47337..25188f81 100644 --- a/src/theming.py +++ b/src/theming.py @@ -101,6 +101,13 @@ class Theme(object): CHAR_CHATSTATE_COMPOSING = 'X' CHAR_CHATSTATE_PAUSED = 'p' + # These characters are used for the affiliation in the user list + # in a MUC + CHAR_AFFILIATION_OWNER = '~' + CHAR_AFFILIATION_ADMIN = '&' + CHAR_AFFILIATION_MEMBER = '+' + CHAR_AFFILIATION_NONE = '-' + # Separators COLOR_VERTICAL_SEPARATOR = (4, -1) COLOR_NEW_TEXT_SEPARATOR = (2, -1) @@ -162,8 +169,8 @@ class Theme(object): CHAR_JOIN = '--->' CHAR_QUIT = '<---' CHAR_KICK = '-!-' - CHAR_COLUMN_ASC = ' ▲' - CHAR_COLUMN_DESC =' ▼' + CHAR_COLUMN_ASC = ' ▲' + CHAR_COLUMN_DESC =' ▼' COLOR_JOIN_CHAR = (4, -1) COLOR_QUIT_CHAR = (1, -1) |