diff options
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): |