diff options
-rwxr-xr-x | tcvt.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -168,7 +168,7 @@ class Columns: def addch(self, char): if self.xpos == self.columnwidth - 1: self.curwin.insch(self.curypos, self.curxpos, char, self.attrs) - if self.ypos + 1 == 2 * self.height: + if self.ypos + 1 == self.numcolumns * self.height: self.scroll() self.move(self.ypos, 0) else: |