diff options
author | Florent Le Coz <louiz@louiz.org> | 2012-01-24 15:46:51 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-01-24 15:46:51 +0100 |
commit | 99a16f2b868a093e390d99154ad67251ab9f3511 (patch) | |
tree | edc9884f46d3f5efcf10494792fbef9f983f8cb9 /src/text_buffer.py | |
parent | 1f7db8cfaa90f3fc628181e6379779f7adcb9f53 (diff) | |
download | poezio-99a16f2b868a093e390d99154ad67251ab9f3511.tar.gz poezio-99a16f2b868a093e390d99154ad67251ab9f3511.tar.bz2 poezio-99a16f2b868a093e390d99154ad67251ab9f3511.tar.xz poezio-99a16f2b868a093e390d99154ad67251ab9f3511.zip |
Make the color for information messages themable
Diffstat (limited to 'src/text_buffer.py')
-rw-r--r-- | src/text_buffer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/text_buffer.py b/src/text_buffer.py index f396bd5b..9b717882 100644 --- a/src/text_buffer.py +++ b/src/text_buffer.py @@ -16,6 +16,7 @@ import collections from datetime import datetime from config import config +from theming import get_theme Message = collections.namedtuple('Message', 'txt nick_color time str_time nickname user') @@ -44,7 +45,7 @@ class TextBuffer(object): else: color = None # TODO: display the bg color too. - txt = ("\x195}* \x19%s}" % (color or 5,))+ nickname + ' \x195}' + txt[4:] + txt = ("\x19%(info_col)s}* \x19%(col)s}" % {'col':color or 5, 'info_col':get_theme().COLOR_INFORMATION_TEXT[0]})+ nickname + ' \x19%(info_col)s}' % {'info_col':get_theme().COLOR_INFORMATION_TEXT[0]} + txt[4:] nickname = None msg = Message(txt='%s\x19o'%(txt.replace('\t', ' '),), nick_color=nick_color, time=time, str_time=time.strftime("%Y-%m-%d %H:%M:%S")\ |