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:
Binary file not shown.
Binary file not shown.
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user