summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-01-10 18:59:34 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-01-10 18:59:34 +0100
commit63d2b8f06f81f6fdc5b36af67b493ca3cc6c7865 (patch)
treea72630d242d37dcaf0d0244ffefd92d5e60256c3 /src
parent97ee65fcb87325bd7fa0bbe3d1487e6a3fda5f65 (diff)
downloadpoezio-63d2b8f06f81f6fdc5b36af67b493ca3cc6c7865.tar.gz
poezio-63d2b8f06f81f6fdc5b36af67b493ca3cc6c7865.tar.bz2
poezio-63d2b8f06f81f6fdc5b36af67b493ca3cc6c7865.tar.xz
poezio-63d2b8f06f81f6fdc5b36af67b493ca3cc6c7865.zip
Avoid traceback on text_win refresh
Diffstat (limited to 'src')
-rw-r--r--src/tabs.py2
-rw-r--r--src/windows.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 1cec7b28..74dc468d 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -605,7 +605,7 @@ class MucTab(ChatTab):
def on_gain_focus(self):
self._room.set_color_state(theme.COLOR_TAB_CURRENT)
- if self.text_win.built_lines[-1] is None:
+ if self.text_win.built_lines and self.text_win.built_lines[-1] is None:
self.text_win.remove_line_separator()
curses.curs_set(1)
diff --git a/src/windows.py b/src/windows.py
index e4b5bcb4..5ac3c5e3 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -551,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 and line.text_offset+len(line.text) < self.width:
+ if y != self.height-1 or (not line or line.text_offset+len(line.text) < self.width):
self.addstr('\n')
self._refresh()