diff options
author | mathieui <mathieui@mathieui.net> | 2014-05-18 19:29:59 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-05-18 19:34:36 +0200 |
commit | 3ce4454282c4c78e139891ddf8248dbfed4e2090 (patch) | |
tree | ce2c699f4b412403805894e173366a5a04948454 /src/theming.py | |
parent | 71ae29df97d0be3328f62cc5024bdc9eb0235a51 (diff) | |
download | poezio-3ce4454282c4c78e139891ddf8248dbfed4e2090.tar.gz poezio-3ce4454282c4c78e139891ddf8248dbfed4e2090.tar.bz2 poezio-3ce4454282c4c78e139891ddf8248dbfed4e2090.tar.xz poezio-3ce4454282c4c78e139891ddf8248dbfed4e2090.zip |
Use simple chars for PEP mood/activity/gaming
Diffstat (limited to 'src/theming.py')
-rwxr-xr-x | src/theming.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theming.py b/src/theming.py index 093fa553..9820addf 100755 --- a/src/theming.py +++ b/src/theming.py @@ -307,9 +307,9 @@ class Theme(object): CHAR_ROSTER_ERROR = '✖' CHAR_ROSTER_TUNE = '♪' CHAR_ROSTER_ASKED = '?' - CHAR_ROSTER_ACTIVITY = '☃' - CHAR_ROSTER_MOOD = '☺' - CHAR_ROSTER_GAMING = '♠' + CHAR_ROSTER_ACTIVITY = 'A' + CHAR_ROSTER_MOOD = 'M' + CHAR_ROSTER_GAMING = 'G' CHAR_ROSTER_FROM = '←' CHAR_ROSTER_BOTH = '↔' CHAR_ROSTER_TO = '→' |