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