From 8e7b678506bd05fb7ade42d02628ca958fe32ba1 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 10 Jan 2011 17:24:37 +0100 Subject: Fix an error in textwin.refresh a \n was added when the line was exactly the same width as the window, so the next nick was one line too low --- src/windows.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/windows.py b/src/windows.py index 83bc886f..e4b5bcb4 100644 --- a/src/windows.py +++ b/src/windows.py @@ -487,9 +487,8 @@ class TextWin(Win): this_line_was_broken_by_space = False nb = 0 while txt != '': - if txt[:self.width-offset].find('\n') != -1: - limit = txt[:self.width-offset].find('\n') - else: + limit = txt[:self.width-offset].find('\n') + if limit < 0: # break between words if possible if len(txt) >= self.width-offset: limit = txt[:self.width-offset].rfind(' ') @@ -552,7 +551,7 @@ class TextWin(Win): if line.nickname: self.write_nickname(line.nickname, line.nickname_color) self.write_text(y, line.text_offset, line.text, line.text_color, line.colorized) - if y != self.height - 1: + if y != self.height-1 and line.text_offset+len(line.text) < self.width: self.addstr('\n') self._refresh() -- cgit v1.2.3