diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-01-08 07:37:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-08 07:37:58 +0000 |
commit | c54115516717d6fd429065158d81a93c0818fefa (patch) | |
tree | 1054379f18edaacc42d127b9beb7f8d6e2fda98d /CHANGELOG.md | |
parent | 2b0d19e18f2c92bc4ec9e53e7f1619c8604be937 (diff) | |
download | alacritty-c54115516717d6fd429065158d81a93c0818fefa.tar.gz alacritty-c54115516717d6fd429065158d81a93c0818fefa.zip |
Fix selection with right and middle mouse
Since there was no check for the button state for semantic and line
selection, it was possible to trigger selection using the middle and
right mouse button. This has been resolved by explicitly checking for
the pressed button before starting these selections.
To further ensure that double and triple clicks are only triggered when
the same button is pressed multiple times, the last pressed button is
stored.
This fixes #1915.
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 a3b0c16d..7b7ced9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Replaced `Command` with `Super` in the Linux and Windows config documentation +- Prevent semantic and line selection from starting with the right or middle mouse button ## Version 0.2.5 |