aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-08 06:22:05 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-08 09:51:24 -0500
commit47da8f77f27174740c20c1cef99daac15f0bf9e8 (patch)
tree411a68a4d8ee4fc2088dbf6f3dd78c86caf7bc25 /src
parent8a609443b4ae06e58e0334751bbdb76e31068d37 (diff)
downloadvt100-rust-47da8f77f27174740c20c1cef99daac15f0bf9e8.tar.gz
vt100-rust-47da8f77f27174740c20c1cef99daac15f0bf9e8.zip
VPA should not be restricted to the scroll region
since it is absolute positioning
Diffstat (limited to 'src')
-rw-r--r--src/grid.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/grid.rs b/src/grid.rs
index 3c262fe..0d075ea 100644
--- a/src/grid.rs
+++ b/src/grid.rs
@@ -351,8 +351,6 @@ impl Grid {
pub fn row_set(&mut self, i: u16) {
self.pos.row = i;
- self.row_clamp_top(true);
- self.row_clamp_bottom(true);
}
pub fn col_inc(&mut self, count: u16) {