From 769b6ec33b6bacc24f825c40a66d6327af383ae9 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Wed, 9 Mar 2011 05:27:10 +0100 Subject: little fixes and (very little) optimization --- src/tabs.py | 2 +- src/windows.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/tabs.py b/src/tabs.py index 7270208b..cafeabc4 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -260,7 +260,7 @@ class ChatTab(Tab): for msg in self._room.messages[:-40:-1]: if not msg: continue - txt = msg.txt + txt = msg.get('txt') for char in char_we_dont_want: txt = txt.replace(char, ' ') for word in txt.split(): diff --git a/src/windows.py b/src/windows.py index 316dd6d5..3e073f9e 100644 --- a/src/windows.py +++ b/src/windows.py @@ -569,12 +569,10 @@ class TextWin(Win): if line is None: self.write_line_separator() else: - if line.get('time'): - self.write_time(line.get('time')) - if line.get('nickname'): - self.write_nickname(line.get('nickname'), line.get('nickname_color')) + self.write_time(line.get('time')) + self.write_nickname(line.get('nickname'), line.get('nickname_color')) self.write_text(y, line.get('text_offset'), line.get('text'), line.get('text_color'), line.get('colorized')) - if y != self.height-1 or (not line or line.get('text_offset')+wcwidth.wcswidth(line.get('text')) < self.width): + if y != self.height-1: self.addstr('\n') self._refresh() @@ -585,7 +583,6 @@ class TextWin(Win): """ write the text of a line. """ - txt = txt if not colorized: if color: self._win.attron(common.curses_color_pair(color)) @@ -627,6 +624,8 @@ class TextWin(Win): Write the nickname, using the user's color and return the number of written characters """ + if not nickname: + return if color: self._win.attron(common.curses_color_pair(color)) self.addstr(nickname) @@ -638,8 +637,9 @@ class TextWin(Win): """ Write the date on the yth line of the window """ - self.addstr(time) - self.addstr(' ') + if time: + self.addstr(time) + self.addstr(' ') def resize(self, height, width, y, x, room=None): self._resize(height, width, y, x) -- cgit v1.2.3