diff options
author | Ben Connors <benconnors@outlook.com> | 2019-10-31 14:33:47 -0400 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-10-31 14:33:47 -0400 |
commit | 1f037f48e5badab2b758c4b9bd0541c5ccda7b3f (patch) | |
tree | ea5e88d86cf0ab8d316892de5253b4caee6541b6 /interface/pager.py | |
parent | 51e723e688a4bdead12bb56d5e6dc59c5d5aef88 (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/pager.py')
-rwxr-xr-x | interface/pager.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/interface/pager.py b/interface/pager.py index 2203e52..901c431 100755 --- a/interface/pager.py +++ b/interface/pager.py @@ -134,6 +134,7 @@ class Pager: 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 |