diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-03-24 01:29:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 01:29:07 +0000 |
commit | c35dbc96575f6147de97be15c5134bc7fabe50bd (patch) | |
tree | e905e4de6dbae5a5126fb792b567c91d6e637c2c /CHANGELOG.md | |
parent | c9c5fbbe2bd522c55af041e84d6a222c059555b1 (diff) | |
download | alacritty-c35dbc96575f6147de97be15c5134bc7fabe50bd.tar.gz alacritty-c35dbc96575f6147de97be15c5134bc7fabe50bd.zip |
Fix cursor position after alt screen resize
This fixes a regression introduced in 4cc6421, which ignored the main
grid's cursor when increasing the number of lines available, causing
incorrect cursor position after restoring to the primary screen.
Additionally another similar bug has been fixed where the grid was not
scrolled correctly when shrinking while in the alternate screen.
When the grid is resized multiple lines at once, there was also an issue
with Alacritty either pulling all lines from history or none at all,
instead of mixing both approaches and pulling just what is required.
This lead to incorrect cursor positions when the resize could partially
make use of history.
Fixes #3499.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f9c68516..c61cf706 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -94,6 +94,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Decorations visible when in fullscreen on Wayland - Window size not persisted correctly after fullscreening on macOS - Crash on startup with some locales on X11 +- Shrinking terminal height in alt screen deleting primary screen content ### Removed |