diff options
author | Christian Duerr <contact@christianduerr.com> | 2019-11-23 19:23:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-23 19:23:00 +0100 |
commit | 94068956e6133ff24b1553eacdfa50e31351b8fd (patch) | |
tree | 27517133a3c489b497d8a41812ae7c1072b90eda /alacritty_terminal | |
parent | 474032742b3bf325e655eb6cddb19632cb989c1a (diff) | |
download | alacritty-94068956e6133ff24b1553eacdfa50e31351b8fd.tar.gz alacritty-94068956e6133ff24b1553eacdfa50e31351b8fd.zip |
Fix modifiers not getting released with XWayland
This resolves a winit bug where modifiers would stay pressed when they
were released outside of Alacritty when it was started in XWayland mode.
Diffstat (limited to 'alacritty_terminal')
-rw-r--r-- | alacritty_terminal/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 00598357..43ee2703 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -17,11 +17,11 @@ parking_lot = "0.9" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" vte = "0.3" -mio = "0.6" +mio = "0.6.20" mio-extras = "2" log = "0.4" unicode-width = "0.1" -base64 = "0.10.0" +base64 = "0.11.0" terminfo = "0.6.1" url = "2" copypasta = { path = "../copypasta" } |