diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2020-04-15 14:54:10 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2020-04-15 14:54:10 +0200 |
commit | 47e76f286ad7b1f903f6a8ab72ce30d457144f31 (patch) | |
tree | c4c78d135eecd560d3b3e42c85cd29493c277f8b | |
parent | 1e2c6593f5b42726e4402ca2f16ab41afc1480ff (diff) | |
download | poezio-47e76f286ad7b1f903f6a8ab72ce30d457144f31.tar.gz poezio-47e76f286ad7b1f903f6a8ab72ce30d457144f31.tar.bz2 poezio-47e76f286ad7b1f903f6a8ab72ce30d457144f31.tar.xz poezio-47e76f286ad7b1f903f6a8ab72ce30d457144f31.zip |
theming: add CHAR_AFFILIATION_OUTCAST
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rwxr-xr-x | poezio/theming.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/poezio/theming.py b/poezio/theming.py index bbf2fb64..fc34ae39 100755 --- a/poezio/theming.py +++ b/poezio/theming.py @@ -178,12 +178,13 @@ class Theme: CHAR_CHATSTATE_COMPOSING = 'X' CHAR_CHATSTATE_PAUSED = 'p' - # These characters are used for the affiliation in the user list - # in a MUC + # These characters are used for the affiliation wherever needed, e.g., in + # the user list in a MUC, or when displaying affiliation lists. CHAR_AFFILIATION_OWNER = '~' CHAR_AFFILIATION_ADMIN = '&' CHAR_AFFILIATION_MEMBER = '+' CHAR_AFFILIATION_NONE = '-' + CHAR_AFFILIATION_OUTCAST = '!' # XML Tab CHAR_XML_IN = 'IN ' |