From dcd29c636f01a8983d4cfdb20c66793e5d7cdef0 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Tue, 29 Mar 2011 12:44:19 +0200 Subject: Change how colors are handled. With \x19x etc Should work like before and be a little lighter on the RA --- src/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core.py') diff --git a/src/core.py b/src/core.py index e2b2fb1e..46e10793 100644 --- a/src/core.py +++ b/src/core.py @@ -887,7 +887,7 @@ class Core(object): self.refresh_window() self.doupdate() - def add_message_to_text_buffer(self, room, txt, time=None, nickname=None, colorized=False): + def add_message_to_text_buffer(self, room, txt, time=None, nickname=None): """ Add the message to the room if possible, else, add it to the Info window (in the Info tab of the info window in the RosterTab) @@ -895,7 +895,7 @@ class Core(object): if not room: self.information('Error, trying to add a message in no room: %s' % txt) else: - room.add_message(txt, time, nickname, colorized) + room.add_message(txt, time, nickname) self.refresh_window() def command_help(self, arg): -- cgit v1.2.3