diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-09-27 02:51:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 23:51:31 +0000 |
commit | e9c0034f4d3ee003149fe5454942bea7ff3d98be (patch) | |
tree | 0962870139ddb5802e819a5b312b42c812bcf5d4 /CHANGELOG.md | |
parent | 085cc35b14e7c835e1a9add408b45da583959a6c (diff) | |
download | alacritty-e9c0034f4d3ee003149fe5454942bea7ff3d98be.tar.gz alacritty-e9c0034f4d3ee003149fe5454942bea7ff3d98be.zip |
Fix selection incorrectly expanding when scrolled in history
When doing selection expansion we were checking for wide char flags
on a cells from the bottom of the terminal instead of in a current
viewport when scrolled up in history, which was leading to expanding
more than needed if we had wide chars on the same viewport cell,
but in the bottom of the terminal.
Fixes #4257.
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 d7c7603e..0688a7cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Crash when copying/pasting with neither pointer nor keyboard focus on Wayland - Crash due to fd leak on Wayland - IME window position with fullwidth characters in the search bar +- Selection expanding over 2 characters when scrolled in history with fullwidth characters in use ## 0.5.0 |