mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
parent
85112fefa5
commit
44037fa42a
2 changed files with 4 additions and 0 deletions
|
@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Performance bottleneck when clearing colored rows
|
- Performance bottleneck when clearing colored rows
|
||||||
- Vague startup crash messages on Windows with WinPTY backend
|
- Vague startup crash messages on Windows with WinPTY backend
|
||||||
- Deadlock on Windows when closing Alacritty using the title bar "X" button (ConPTY backend)
|
- Deadlock on Windows when closing Alacritty using the title bar "X" button (ConPTY backend)
|
||||||
|
- Crash on `clear` when scrolled up in history
|
||||||
|
|
||||||
## 0.4.0
|
## 0.4.0
|
||||||
|
|
||||||
|
|
|
@ -544,6 +544,9 @@ impl<T: GridCell + PartialEq + Copy> Grid<T> {
|
||||||
let positions = self.lines - iter.cur.line;
|
let positions = self.lines - iter.cur.line;
|
||||||
let region = Line(0)..self.num_lines();
|
let region = Line(0)..self.num_lines();
|
||||||
|
|
||||||
|
// Reset display offset
|
||||||
|
self.display_offset = 0;
|
||||||
|
|
||||||
// Clear the viewport
|
// Clear the viewport
|
||||||
self.scroll_up(®ion, positions, template);
|
self.scroll_up(®ion, positions, template);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue