diff options
Diffstat (limited to 'src/window.py')
-rw-r--r-- | src/window.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/window.py b/src/window.py index 0df6c7e7..f0ce7aad 100644 --- a/src/window.py +++ b/src/window.py @@ -26,8 +26,15 @@ class Win(object): def _resize(self, height, width, y, x, parent_win): self.height, self.width, self.x, self.y = height, width, x, y - self.win = parent_win.subwin(height, width, y, x) - self.win.leaveok(1) + 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 def refresh(self): self.win.noutrefresh() |