diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-04-21 15:23:10 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-21 15:23:10 +0400 |
commit | 90054614c241375839571d4dd2145edcb65257a6 (patch) | |
tree | 095ef1ea17e2ac2d0185af6aff8b42bacd1df5af /CHANGELOG.md | |
parent | 44dc9e19f4bbf89d1789502953683ca201668fe4 (diff) | |
download | alacritty-90054614c241375839571d4dd2145edcb65257a6.tar.gz alacritty-90054614c241375839571d4dd2145edcb65257a6.zip |
Fix IME preview overlapping text
Fix incorrect usage of the `flags` when drawing the preedit resulting
in setting the `flags`, but not actually reading the value back.
The logic to skip things was also used incorrectly, because the renderer
does that already based on the `WIDE_CHAR` flag on the cell.
Fixes: 67a433ceed (Skip whitespaces for wide chars in preedit)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e6b301e2..b41ed24f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,14 +10,15 @@ Notable changes to the `alacritty_terminal` crate are documented in its ## 0.14.0-dev +### Changed + +- Pressing `Alt` with unicode input will now add `ESC` like for ASCII input + ### Fixed - Crash when trying to create a new tab without decorations enabled - New window being treated as focused when it's not on Wayland - -### Changed - -- Pressing `Alt` with unicode input will now add `ESC` like for ASCII input +- IME preview blending into text below it ## 0.13.2 |