summaryrefslogtreecommitdiff
path: root/src/tabs.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-05-16 19:50:56 +0200
committermathieui <mathieui@mathieui.net>2012-05-16 19:50:56 +0200
commitda30c8c79f5950ef85296ba8f749b929b1bbbd57 (patch)
tree49ad281e1f5dc317e68751f99475527370d48b40 /src/tabs.py
parent155914470da7f63d7a41025a17c1fd0827ed7df9 (diff)
downloadpoezio-da30c8c79f5950ef85296ba8f749b929b1bbbd57.tar.gz
poezio-da30c8c79f5950ef85296ba8f749b929b1bbbd57.tar.bz2
poezio-da30c8c79f5950ef85296ba8f749b929b1bbbd57.tar.xz
poezio-da30c8c79f5950ef85296ba8f749b929b1bbbd57.zip
Put color in the topic again
Diffstat (limited to 'src/tabs.py')
-rw-r--r--src/tabs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index a66d81cd..39b81df7 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -853,7 +853,8 @@ class MucTab(ChatTab):
/topic [new topic]
"""
if not arg.strip():
- self._text_buffer.add_message(_("The subject of the room is: %s") % self.topic)
+ self._text_buffer.add_message(_("\x19%s}The subject of the room is: %s") %
+ (get_theme().COLOR_INFORMATION_TEXT[0], self.topic))
self.text_win.refresh()
self.input.refresh()
return