From d4a65aaf7ec52e8bf32917237260a0727e51fe58 Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Thu, 30 Oct 2008 09:25:35 +0000 Subject: * Fix bug introduced that makes lines scroll too much. I think the last two revisions fix the real bug that this was covering up. --- src/de/mud/terminal/vt320.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/de/mud/terminal/vt320.java b/src/de/mud/terminal/vt320.java index 03fc853..ba636ae 100644 --- a/src/de/mud/terminal/vt320.java +++ b/src/de/mud/terminal/vt320.java @@ -2341,7 +2341,7 @@ public abstract class vt320 extends VDUBuffer implements VDUInput { int limit; /* FIXME: xterm only cares about 0 and topmargin */ if (R > bm) - limit = bm; // BUGFIX: corrects scrollback dissapearing in irssi (?) + limit = bm - 1; else if (R >= tm) { limit = tm; } else -- cgit v1.2.3