Put color in the topic again
This commit is contained in:
parent
155914470d
commit
da30c8c79f
2 changed files with 9 additions and 3 deletions
|
@ -1361,9 +1361,14 @@ class Core(object):
|
||||||
if not subject or not tab:
|
if not subject or not tab:
|
||||||
return
|
return
|
||||||
if nick_from:
|
if nick_from:
|
||||||
self.add_message_to_text_buffer(tab._text_buffer, _("%(nick)s set the subject to: %(subject)s") % {'nick':nick_from, 'subject':subject}, time=None)
|
self.add_message_to_text_buffer(tab._text_buffer,
|
||||||
|
_("\x19%(info_col)s}%(nick)s set the subject to: %(subject)s") %
|
||||||
|
{'info_col': get_theme().COLOR_INFORMATION_TEXT[0], 'nick':nick_from, 'subject':subject},
|
||||||
|
time=None)
|
||||||
else:
|
else:
|
||||||
self.add_message_to_text_buffer(tab._text_buffer, _("The subject is: %(subject)s") % {'subject':subject}, time=None)
|
self.add_message_to_text_buffer(tab._text_buffer, _("\x19%(info_col)s}The subject is: %(subject)s") %
|
||||||
|
{'subject':subject, 'info_col': get_theme().COLOR_INFORMATION_TEXT[0]},
|
||||||
|
time=None)
|
||||||
tab.topic = subject
|
tab.topic = subject
|
||||||
if self.get_tab_by_name(room_from, tabs.MucTab) is self.current_tab():
|
if self.get_tab_by_name(room_from, tabs.MucTab) is self.current_tab():
|
||||||
self.refresh_window()
|
self.refresh_window()
|
||||||
|
|
|
@ -853,7 +853,8 @@ class MucTab(ChatTab):
|
||||||
/topic [new topic]
|
/topic [new topic]
|
||||||
"""
|
"""
|
||||||
if not arg.strip():
|
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.text_win.refresh()
|
||||||
self.input.refresh()
|
self.input.refresh()
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue