From cb9ec92655ba41e2a14bdfd8bb929da559805aaa Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Tue, 21 Dec 2010 07:02:22 +0000 Subject: little fix --- src/windows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/windows.py b/src/windows.py index a2c7e72e..3543a171 100644 --- a/src/windows.py +++ b/src/windows.py @@ -529,6 +529,7 @@ class TextWin(Win): self._win.attron(curses.color_pair(theme.COLOR_NEW_TEXT_SEPARATOR)) self.addnstr('- '*(self.width//2), self.width) self._win.attroff(curses.color_pair(theme.COLOR_NEW_TEXT_SEPARATOR)) + self.addstr('\n') def write_text(self, y, x, txt, color, colorized): """ @@ -961,8 +962,7 @@ class Input(Win): with g_lock: self._win.erase() self.addstr(self.text[self.line_pos:self.line_pos+self.width-1]) - cursor_pos = self.pos - self.addstr(0, cursor_pos, '') # WTF, this works but .move() doesn't… + self.addstr(0, self.pos, '') # WTF, this works but .move() doesn't… self._refresh() def refresh(self): -- cgit v1.2.3