diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-04-19 18:00:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-19 18:00:24 +0000 |
commit | cfc20d4f34dca535654cc32df18e785296af4cc5 (patch) | |
tree | b9697a365d1ec4b3161fd67937497e90a63f5c0d /CHANGELOG.md | |
parent | a47d716daace7c197392854754406a06454ec380 (diff) | |
download | alacritty-cfc20d4f34dca535654cc32df18e785296af4cc5.tar.gz alacritty-cfc20d4f34dca535654cc32df18e785296af4cc5.zip |
Fix cursor dimensions with font offset
Previously cursor dimensions were not calculated correctly when a font
offset was specified, since the font offset was completely ignored.
This has been fixed by moving all the cursor logic from the font into
the Alacritty crate, applying the config's offsets before rasterizing
the cursors.
This has also fixed an issue with some cursors not being rendered as
double-width correctly when over double-width glyphs.
This fixes #2209.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dd71e5a..97f46d2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Resize events are not send to the shell anymore if dimensions haven't changed - Minor performance issues with underline and strikeout checks - Rare bug which would extend underline and strikeout beyond the end of line +- Cursors not spanning two lines when over double-width characters +- Incorrect cursor dimensions if the font offset isn't `0` ## Version 0.3.0 |