diff options
-rw-r--r-- | src/windows.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/windows.py b/src/windows.py index 4e464a75..e942407f 100644 --- a/src/windows.py +++ b/src/windows.py @@ -64,7 +64,10 @@ class Win(object): self._win = curses.newwin(height, width, y, x) else: self._win.resize(height, width) - self._win.mvwin(y, x) + try: + self._win.mvwin(y, x) + except: + log.debug('DEBUG: mvwin returned ERR. Please investigate') def resize(self, height, width, y, x): """ |