diff options
author | Christian Duerr <contact@christianduerr.com> | 2018-04-21 13:37:16 +0200 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2018-06-02 09:56:50 -0700 |
commit | 4df09128ced0db31e26f3d26c67ffc658475bffb (patch) | |
tree | 1dcae98e47a090a137b9050643b789cbbbfeb451 | |
parent | 0d900cdf69d0d53b52c44b302907380ad4d3735d (diff) | |
download | alacritty-4df09128ced0db31e26f3d26c67ffc658475bffb.tar.gz alacritty-4df09128ced0db31e26f3d26c67ffc658475bffb.zip |
Revert "Fix cursor not showing in first column"
This reverts commit 54b21b66ecc6f8f149d1425567e0e3d766a3ac54.
-rw-r--r-- | src/grid/mod.rs | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/grid/mod.rs b/src/grid/mod.rs index bc288e3b..c05584c4 100644 --- a/src/grid/mod.rs +++ b/src/grid/mod.rs @@ -745,16 +745,15 @@ impl<'a, T: Copy + 'a> Iterator for DisplayIter<'a, T> { #[inline] fn next(&mut self) -> Option<Self::Item> { - // Check if the end of the line was reached - let next_line = self.col == self.grid.num_cols(); - if next_line { - // Return `None` if we've reached the end of the last line + // Make sure indices are valid. Return None if we've reached the end. + if self.col == self.grid.num_cols() { if self.offset == self.limit { return None; } // Switch to the next line self.col = Column(0); + self.offset -= 1; self.line = Line(*self.grid.lines - 1 - (self.offset - self.limit)); } @@ -766,10 +765,7 @@ impl<'a, T: Copy + 'a> Iterator for DisplayIter<'a, T> { column: self.col }); - // Only increment column if the line hasn't changed - if !next_line { - self.col += 1; - } + self.col += 1; item } } |