diff options
author | mahkoh <mahkoh@users.noreply.github.com> | 2022-04-16 20:39:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 18:39:26 +0000 |
commit | 9bbb296d1dc4f72e845695f22e903bcc1d66d5a3 (patch) | |
tree | dc3db86cb0747d7682299f11e567120b5f69e9a5 /CHANGELOG.md | |
parent | d5cad2a862467bf287b20d7a471801ab2219456a (diff) | |
download | alacritty-9bbb296d1dc4f72e845695f22e903bcc1d66d5a3.tar.gz alacritty-9bbb296d1dc4f72e845695f22e903bcc1d66d5a3.zip |
Fix selection copy without button release
To prevent the current selection clipboard from being overwritten right
before pasting, text is no longer copied solely because the user
scrolled the scrollback buffer.
The selection also isn't copied when a mouse button other than LMB/RMB
are released, since these are the only ones capable of modifying the
selection range.
This should prevent issues where the selection of the user gets
unexpectedly overwritten, especially in scenarios where the user is
currently in the process of pasting something into Alacritty.
Signed-off-by: Julian Orth <ju.orth@gmail.com>
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 c43909c7..4439f9ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Failure when running on 10-bit color system - The colors being slightly different when using srgb displays on macOS - Vi cursor blinking not reset when navigating in search +- Scrolling and middle-clicking modifying the primary selection ## 0.10.1 |