diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-07-21 17:37:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-21 17:37:13 +0000 |
commit | 48c0a7b067a48a77e0b925dc0e75b04422e04a92 (patch) | |
tree | 7d392e7a59ba2adfdc3084fe5c5a0da19f3254e1 | |
parent | 5153c20ace96ea12f0a2714dc33d777c16ac2808 (diff) | |
download | alacritty-48c0a7b067a48a77e0b925dc0e75b04422e04a92.tar.gz alacritty-48c0a7b067a48a77e0b925dc0e75b04422e04a92.zip |
Allow specifying modifiers for mouse bindings
-rw-r--r-- | src/input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input.rs b/src/input.rs index 701feea1..bc33094a 100644 --- a/src/input.rs +++ b/src/input.rs @@ -532,7 +532,7 @@ impl<'a, A: ActionContext + 'a> Processor<'a, A> { return; } - self.process_mouse_bindings(ModifiersState::default(), button); + self.process_mouse_bindings(modifiers, button); } /// Process key input |