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/channelbank.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/channelbank.py')
-rwxr-xr-x | interface/channelbank.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/interface/channelbank.py b/interface/channelbank.py index 6562a9c..47d6482 100755 --- a/interface/channelbank.py +++ b/interface/channelbank.py @@ -96,6 +96,7 @@ class ChannelView: self.root = root with CURSES_LOCK: self.win = root.subpad(self.height, self.width, self.y, self.x) + self.win.leaveok(True) self._refresh_value() self._refresh_channel() |