diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-02-02 11:30:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 11:30:23 +0300 |
commit | 1c878a0476257d328113efcd7088f1aa53f42e56 (patch) | |
tree | b4ba30e6b9549965387330f9eb7111c95795de69 /alacritty/src/event.rs | |
parent | 246ec8945d84f658fc88d02a33c3590ef4a92e0f (diff) | |
download | r-alacritty-1c878a0476257d328113efcd7088f1aa53f42e56.tar.gz r-alacritty-1c878a0476257d328113efcd7088f1aa53f42e56.tar.bz2 r-alacritty-1c878a0476257d328113efcd7088f1aa53f42e56.zip |
Update winit to 0.28
Fixes #6644.
Fixes #6615.
Fixes #6558.
Fixes #6515.
Fixes #3187.
Fixes #62.
Diffstat (limited to 'alacritty/src/event.rs')
-rw-r--r-- | alacritty/src/event.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index 9388b8a9..768b7a47 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -26,7 +26,7 @@ use winit::event_loop::{ }; use winit::platform::run_return::EventLoopExtRunReturn; #[cfg(all(feature = "wayland", not(any(target_os = "macos", windows))))] -use winit::platform::unix::EventLoopWindowTargetExtUnix; +use winit::platform::wayland::EventLoopWindowTargetExtWayland; use winit::window::WindowId; use crossfont::{self, Size}; @@ -1280,6 +1280,9 @@ impl input::Processor<EventProxy, ActionContext<'_, Notifier, EventProxy>> { }, WindowEvent::KeyboardInput { is_synthetic: true, .. } | WindowEvent::TouchpadPressure { .. } + | WindowEvent::TouchpadMagnify { .. } + | WindowEvent::TouchpadRotate { .. } + | WindowEvent::SmartMagnify { .. } | WindowEvent::ScaleFactorChanged { .. } | WindowEvent::CursorEntered { .. } | WindowEvent::AxisMotion { .. } |