From be67df542b563490e8e74251ad3ad5c99aa0aec2 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Thu, 25 Mar 2010 19:31:38 +0000 Subject: fixes a crash with the input is full --- src/gui.py | 1 - src/window.py | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/gui.py b/src/gui.py index a9c2fa33..7ec1ab73 100644 --- a/src/gui.py +++ b/src/gui.py @@ -112,7 +112,6 @@ class Gui(object): def main_loop(self, stdscr): while 1: stdscr.leaveok(1) - self.window.input.win.move(0, self.window.input.pos) curses.doupdate() try: key = stdscr.getkey() diff --git a/src/window.py b/src/window.py index f0ce7aad..8dc31096 100644 --- a/src/window.py +++ b/src/window.py @@ -28,13 +28,14 @@ class Win(object): self.height, self.width, self.x, self.y = height, width, x, y try: self.win = parent_win.subwin(height, width, y, x) - self.win.leaveok(1) except: # Happens when the C function subwin fails. The man # doesn't give a reason for this to happen, so I can't # really fix this. # just don't crash when this happens. - pass + print parent_win, parent_win.height, parent_win.width, height, width, y, x + raise + self.win.leaveok(1) def refresh(self): self.win.noutrefresh() @@ -513,6 +514,7 @@ class Window(object): Resize the whole tabe. i.e. all its sub-windows """ self.size = (self.height, self.width) = stdscr.getmaxyx() + open('caca', 'a').write(str(self.size)) if self.height < 10 or self.width < 60: visible = False else: -- cgit v1.2.3