diff options
author | Ben Connors <benconnors@outlook.com> | 2019-10-26 14:22:14 -0400 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-10-26 14:31:45 -0400 |
commit | cce9d77ec8a412e413b799768625f407b3280eb2 (patch) | |
tree | 9d4fb8c6b59d5a7237468e431f37d86f233c47bd /interface/chaserview.py | |
parent | 70b62ea7a6be3b3af801f58bc94924074fd5aec2 (diff) |
Finish chaser editing on interface; some fixes
- Fix saving Workspaces
o Order wasn't being generated properly
- Finish chaser editing in interface
o Create, delete steps
o Move steps around
o Rename steps
Diffstat (limited to 'interface/chaserview.py')
-rwxr-xr-x | interface/chaserview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/chaserview.py b/interface/chaserview.py index e5b0c2b..6a80241 100755 --- a/interface/chaserview.py +++ b/interface/chaserview.py @@ -80,7 +80,7 @@ class ChaserView: c = self._chaser w = self._width - 2 - self.win.addstr(1, 1, self.fit(("%d: "% c.id) + c.name, w-2, True), curses.A_REVERSE if self._highlight else 0) + self.win.addstr(1, 1, self.fit(("%d: "% c.id) + c.name, w, True), curses.A_REVERSE if self._highlight else 0) maxsteps = self._height - 4 if maxsteps < len(c.steps): |