mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
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.
This commit is contained in:
parent
2b0d19e18f
commit
c541155167
3 changed files with 42 additions and 9 deletions
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Replaced `Command` with `Super` in the Linux and Windows config documentation
|
- 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
|
## Version 0.2.5
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ use std::env;
|
||||||
|
|
||||||
use serde_json as json;
|
use serde_json as json;
|
||||||
use parking_lot::MutexGuard;
|
use parking_lot::MutexGuard;
|
||||||
use glutin::{self, ModifiersState, Event, ElementState};
|
use glutin::{self, ModifiersState, Event, ElementState, MouseButton};
|
||||||
use copypasta::{Clipboard, Load, Store, Buffer as ClipboardBuffer};
|
use copypasta::{Clipboard, Load, Store, Buffer as ClipboardBuffer};
|
||||||
use glutin::dpi::PhysicalSize;
|
use glutin::dpi::PhysicalSize;
|
||||||
|
|
||||||
|
@ -245,6 +245,7 @@ pub struct Mouse {
|
||||||
pub cell_side: Side,
|
pub cell_side: Side,
|
||||||
pub lines_scrolled: f32,
|
pub lines_scrolled: f32,
|
||||||
pub block_url_launcher: bool,
|
pub block_url_launcher: bool,
|
||||||
|
pub last_button: MouseButton,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for Mouse {
|
impl Default for Mouse {
|
||||||
|
@ -263,6 +264,7 @@ impl Default for Mouse {
|
||||||
cell_side: Side::Left,
|
cell_side: Side::Left,
|
||||||
lines_scrolled: 0.0,
|
lines_scrolled: 0.0,
|
||||||
block_url_launcher: false,
|
block_url_launcher: false,
|
||||||
|
last_button: MouseButton::Other(0),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
46
src/input.rs
46
src/input.rs
|
@ -451,14 +451,14 @@ impl<'a, A: ActionContext + 'a> Processor<'a, A> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn on_mouse_double_click(&mut self) {
|
pub fn on_mouse_double_click(&mut self, button: MouseButton) {
|
||||||
if let Some(point) = self.ctx.mouse_coords() {
|
if let (Some(point) , MouseButton::Left) = (self.ctx.mouse_coords(), button) {
|
||||||
self.ctx.semantic_selection(point);
|
self.ctx.semantic_selection(point);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn on_mouse_triple_click(&mut self) {
|
pub fn on_mouse_triple_click(&mut self, button: MouseButton) {
|
||||||
if let Some(point) = self.ctx.mouse_coords() {
|
if let (Some(point), MouseButton::Left) = (self.ctx.mouse_coords(), button) {
|
||||||
self.ctx.line_selection(point);
|
self.ctx.line_selection(point);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -468,15 +468,21 @@ impl<'a, A: ActionContext + 'a> Processor<'a, A> {
|
||||||
let elapsed = self.ctx.mouse().last_click_timestamp.elapsed();
|
let elapsed = self.ctx.mouse().last_click_timestamp.elapsed();
|
||||||
self.ctx.mouse_mut().last_click_timestamp = now;
|
self.ctx.mouse_mut().last_click_timestamp = now;
|
||||||
|
|
||||||
|
let button_changed = self.ctx.mouse().last_button != button;
|
||||||
|
|
||||||
self.ctx.mouse_mut().click_state = match self.ctx.mouse().click_state {
|
self.ctx.mouse_mut().click_state = match self.ctx.mouse().click_state {
|
||||||
ClickState::Click if elapsed < self.mouse_config.double_click.threshold => {
|
ClickState::Click
|
||||||
|
if !button_changed && elapsed < self.mouse_config.double_click.threshold =>
|
||||||
|
{
|
||||||
self.ctx.mouse_mut().block_url_launcher = true;
|
self.ctx.mouse_mut().block_url_launcher = true;
|
||||||
self.on_mouse_double_click();
|
self.on_mouse_double_click(button);
|
||||||
ClickState::DoubleClick
|
ClickState::DoubleClick
|
||||||
},
|
},
|
||||||
ClickState::DoubleClick if elapsed < self.mouse_config.triple_click.threshold => {
|
ClickState::DoubleClick
|
||||||
|
if !button_changed && elapsed < self.mouse_config.triple_click.threshold =>
|
||||||
|
{
|
||||||
self.ctx.mouse_mut().block_url_launcher = true;
|
self.ctx.mouse_mut().block_url_launcher = true;
|
||||||
self.on_mouse_triple_click();
|
self.on_mouse_triple_click(button);
|
||||||
ClickState::TripleClick
|
ClickState::TripleClick
|
||||||
},
|
},
|
||||||
_ => {
|
_ => {
|
||||||
|
@ -659,6 +665,8 @@ impl<'a, A: ActionContext + 'a> Processor<'a, A> {
|
||||||
},
|
},
|
||||||
ElementState::Released => self.on_mouse_release(button, modifiers),
|
ElementState::Released => self.on_mouse_release(button, modifiers),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.ctx.mouse_mut().last_button = button;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Process key input
|
/// Process key input
|
||||||
|
@ -872,6 +880,7 @@ mod tests {
|
||||||
{
|
{
|
||||||
name: $name:ident,
|
name: $name:ident,
|
||||||
initial_state: $initial_state:expr,
|
initial_state: $initial_state:expr,
|
||||||
|
initial_button: $initial_button:expr,
|
||||||
input: $input:expr,
|
input: $input:expr,
|
||||||
end_state: $end_state:pat,
|
end_state: $end_state:pat,
|
||||||
last_action: $last_action:expr
|
last_action: $last_action:expr
|
||||||
|
@ -893,6 +902,7 @@ mod tests {
|
||||||
|
|
||||||
let mut mouse = Mouse::default();
|
let mut mouse = Mouse::default();
|
||||||
mouse.click_state = $initial_state;
|
mouse.click_state = $initial_state;
|
||||||
|
mouse.last_button = $initial_button;
|
||||||
|
|
||||||
let mut selection = None;
|
let mut selection = None;
|
||||||
|
|
||||||
|
@ -961,6 +971,7 @@ mod tests {
|
||||||
test_clickstate! {
|
test_clickstate! {
|
||||||
name: single_click,
|
name: single_click,
|
||||||
initial_state: ClickState::None,
|
initial_state: ClickState::None,
|
||||||
|
initial_button: MouseButton::Other(0),
|
||||||
input: Event::WindowEvent {
|
input: Event::WindowEvent {
|
||||||
event: WindowEvent::MouseInput {
|
event: WindowEvent::MouseInput {
|
||||||
state: ElementState::Pressed,
|
state: ElementState::Pressed,
|
||||||
|
@ -977,6 +988,7 @@ mod tests {
|
||||||
test_clickstate! {
|
test_clickstate! {
|
||||||
name: double_click,
|
name: double_click,
|
||||||
initial_state: ClickState::Click,
|
initial_state: ClickState::Click,
|
||||||
|
initial_button: MouseButton::Left,
|
||||||
input: Event::WindowEvent {
|
input: Event::WindowEvent {
|
||||||
event: WindowEvent::MouseInput {
|
event: WindowEvent::MouseInput {
|
||||||
state: ElementState::Pressed,
|
state: ElementState::Pressed,
|
||||||
|
@ -993,6 +1005,7 @@ mod tests {
|
||||||
test_clickstate! {
|
test_clickstate! {
|
||||||
name: triple_click,
|
name: triple_click,
|
||||||
initial_state: ClickState::DoubleClick,
|
initial_state: ClickState::DoubleClick,
|
||||||
|
initial_button: MouseButton::Left,
|
||||||
input: Event::WindowEvent {
|
input: Event::WindowEvent {
|
||||||
event: WindowEvent::MouseInput {
|
event: WindowEvent::MouseInput {
|
||||||
state: ElementState::Pressed,
|
state: ElementState::Pressed,
|
||||||
|
@ -1006,6 +1019,23 @@ mod tests {
|
||||||
last_action: MultiClick::TripleClick
|
last_action: MultiClick::TripleClick
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test_clickstate! {
|
||||||
|
name: multi_click_separate_buttons,
|
||||||
|
initial_state: ClickState::DoubleClick,
|
||||||
|
initial_button: MouseButton::Left,
|
||||||
|
input: Event::WindowEvent {
|
||||||
|
event: WindowEvent::MouseInput {
|
||||||
|
state: ElementState::Pressed,
|
||||||
|
button: MouseButton::Right,
|
||||||
|
device_id: unsafe { ::std::mem::transmute_copy(&0) },
|
||||||
|
modifiers: ModifiersState::default(),
|
||||||
|
},
|
||||||
|
window_id: unsafe { ::std::mem::transmute_copy(&0) },
|
||||||
|
},
|
||||||
|
end_state: ClickState::Click,
|
||||||
|
last_action: MultiClick::None
|
||||||
|
}
|
||||||
|
|
||||||
test_process_binding! {
|
test_process_binding! {
|
||||||
name: process_binding_nomode_shiftmod_require_shift,
|
name: process_binding_nomode_shiftmod_require_shift,
|
||||||
binding: Binding { trigger: KEY, mods: ModifiersState { shift: true, ctrl: false, alt: false, logo: false }, action: Action::from("\x1b[1;2D"), mode: TermMode::NONE, notmode: TermMode::NONE },
|
binding: Binding { trigger: KEY, mods: ModifiersState { shift: true, ctrl: false, alt: false, logo: false }, action: Action::from("\x1b[1;2D"), mode: TermMode::NONE, notmode: TermMode::NONE },
|
||||||
|
|
Loading…
Reference in a new issue