1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-11 13:51:01 -05:00

Fix bug in newline

The line should not be cleared.
This commit is contained in:
Joe Wilm 2016-07-16 12:23:31 -07:00
parent 5413f471c9
commit 9a7bfba93c

View file

@ -558,7 +558,6 @@ impl ansi::Handler for Term {
debug_println!("linefeed");
if self.cursor.line + 1 >= self.scroll_region.end {
self.scroll(Line(1), ScrollDirection::Down);
self.clear_line(ansi::LineClearMode::Right);
} else {
self.cursor.line += 1;
}