diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-07-13 11:06:54 +0400 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2023-09-04 03:01:12 +0400 |
commit | a189861880aafcce760e3a142bc2d391f2801f64 (patch) | |
tree | 5a9e82c1577ef60deb328e369cf56122f2088933 /alacritty/src/input.rs | |
parent | bbc02004b85c8b2c0c65c7031527fded4efe6c04 (diff) | |
download | r-alacritty-a189861880aafcce760e3a142bc2d391f2801f64.tar.gz r-alacritty-a189861880aafcce760e3a142bc2d391f2801f64.tar.bz2 r-alacritty-a189861880aafcce760e3a142bc2d391f2801f64.zip |
Update winit to 0.29.1-beta
Make use of new winit frame throttling mechanism used in RedrawRequested,
which removes the need for having Wayland queue to ask for the frame
callbacks.
Fixes #7011.
Diffstat (limited to 'alacritty/src/input.rs')
-rw-r--r-- | alacritty/src/input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/input.rs b/alacritty/src/input.rs index 5075729b..54580fa6 100644 --- a/alacritty/src/input.rs +++ b/alacritty/src/input.rs @@ -1325,7 +1325,7 @@ mod tests { let mut processor = Processor::new(context); - let event: WinitEvent::<'_, TerminalEvent> = $input; + let event: WinitEvent::<TerminalEvent> = $input; if let WinitEvent::WindowEvent { event: WindowEvent::MouseInput { state, |