summaryrefslogtreecommitdiff
path: root/interface/chaserview.py
diff options
context:
space:
mode:
authorBen Connors <benconnors@outlook.com>2019-10-31 14:33:47 -0400
committerBen Connors <benconnors@outlook.com>2019-10-31 14:33:47 -0400
commit1f037f48e5badab2b758c4b9bd0541c5ccda7b3f (patch)
treeea5e88d86cf0ab8d316892de5253b4caee6541b6 /interface/chaserview.py
parent51e723e688a4bdead12bb56d5e6dc59c5d5aef88 (diff)
Fix up the rendering mode
- Fix bug in chaser code leading to incorrect advance - Only known bug is cursor is in the wrong spot during render
Diffstat (limited to 'interface/chaserview.py')
-rwxr-xr-xinterface/chaserview.py1
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