1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2026-04-20 16:16:34 +00:00

Fix jump to end off-by-one bug

This commit is contained in:
David Schmenk
2025-03-07 13:31:58 -08:00
parent 3c9212de9b
commit 81e6092a30
3 changed files with 1 additions and 1 deletions
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -619,7 +619,7 @@ def cursend#0
if numlines > scrnheight - 1
cursrow = numlines - 1
cursy = scrnheight - 1
viewtop = cursrow - scrnheight - 1
viewtop = cursrow - (scrnheight - 1)
else
cursrow = numlines - 1
cursy = numlines - 1