diff options
author | Christian Duerr <contact@christianduerr.com> | 2023-03-25 00:07:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-24 23:07:20 +0000 |
commit | 2df8f860b960d7c96efaf4f059fe2fbbdce82bcc (patch) | |
tree | 343f21f24245b6d36dc357c206d4f754359c924c /CHANGELOG.md | |
parent | ef8cc5d63f34b09e46d8c733cd5a472d480f7cf1 (diff) | |
download | alacritty-2df8f860b960d7c96efaf4f059fe2fbbdce82bcc.tar.gz alacritty-2df8f860b960d7c96efaf4f059fe2fbbdce82bcc.zip |
Fix selection rotation on the last line
This fixes an issue with terminal resizes when the selection is on the
last line. Alacritty would fail to rotate lines and keep the selection
in the same line index whenever the terminal line count was grown or
shrunk.
This issue occurred due to the range passed to the selection's rotate
function still being based on the old terminal size, which caused the
initial or target state of the rotation to be outside of the terminal
bounds.
Closes #6698.
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 ffdfc8c1..9609ecc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixed - Character `;` inside the `URI` in `OSC 8` sequence breaking the URI +- Selection on last line not updating correctly on resize ## 0.12.0 |