diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-09-27 12:12:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-27 12:12:49 +0000 |
commit | 5e97fcbea4d763ab7059cce201d110ba9fb6c19f (patch) | |
tree | b634527c7bfcaca3c924a98c0448e7624630c116 /CHANGELOG.md | |
parent | 593d7718d0d3e1e2071021d34178856079ac8bf7 (diff) | |
download | alacritty-5e97fcbea4d763ab7059cce201d110ba9fb6c19f.tar.gz alacritty-5e97fcbea4d763ab7059cce201d110ba9fb6c19f.zip |
Fix selection start point lagging behind cursor
Since the mouse start position has been the first movement event after
the mouse button was held down, there have been some issues with the
start point lagging behind the cursor because movement events were not
reported from the initial position but there was a gap until movement
starts reporting.
To fix this whenever the mouse button is pressed, the position and cell
side is stored on the `Mouse` struct. Because of this it does not matter
anymore if the movement events are all reported and we can just start a
selection using the stored position/side whenever there currently is no
selection present.
This fixes #1366
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 756bc5e8..a228ad49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix build failure on 32-bit systems - Windows started as unfocused now show the hollow cursor if the setting is enabled - Empty lines in selections are now properly copied to the clipboard +- Selection start point lagging behind initial cursor position ### Deprecated |