diff options
Diffstat (limited to 'interface/chaserview.py')
-rwxr-xr-x | interface/chaserview.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/interface/chaserview.py b/interface/chaserview.py index 6a80241..7a6a8db 100755 --- a/interface/chaserview.py +++ b/interface/chaserview.py @@ -147,6 +147,7 @@ class ChaserView: def __init__(self, y, x, height, width): with CURSES_LOCK: self.win = curses.newwin(height, width, y, x) + self.win.leaveok(True) self.win.keypad(True) self._lock = threading.RLock() self._height = height |