aboutsummaryrefslogtreecommitdiff
path: root/src/grid/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/grid/mod.rs')
-rw-r--r--src/grid/mod.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/grid/mod.rs b/src/grid/mod.rs
index 1889d59f..23ee9cf4 100644
--- a/src/grid/mod.rs
+++ b/src/grid/mod.rs
@@ -236,8 +236,11 @@ impl<T: Copy + Clone> Grid<T> {
self.raw.rotate_up(*positions);
// Now, restore any scroll region lines
- for i in IndexRange(region.end .. self.num_lines()) {
+ let lines = self.lines;
+ for i in IndexRange(region.end .. lines) {
// First do the swap
+ // TODO there is a bug here causing a panic.
+ // TODO math
self.raw.swap_lines(i, i + positions);
}