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

Fix view width off by one bug

This commit is contained in:
David Schmenk
2025-03-07 08:25:08 -08:00
parent 8bb1efcf95
commit 3c9212de9b
3 changed files with 1 additions and 1 deletions
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -310,7 +310,7 @@ def inittxtbuf#0
cursy = 0
viewleft = 0
viewtop = 0
viewwidth = scrnwidth - (flags & gutter) - 1
viewwidth = scrnwidth - (flags & gutter) - 2
flags = flags & ~selection
end
//