diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-12-11 03:40:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 00:40:32 +0000 |
commit | 6b208a6958a32594cf1248f5336f8a8f79d17fe3 (patch) | |
tree | 1e1269dd829e8cc6688eed8b60cafabc97108c0e /alacritty/src/event.rs | |
parent | b0022047542de5979895ae0957e958b8cd5b6020 (diff) | |
download | r-alacritty-6b208a6958a32594cf1248f5336f8a8f79d17fe3.tar.gz r-alacritty-6b208a6958a32594cf1248f5336f8a8f79d17fe3.tar.bz2 r-alacritty-6b208a6958a32594cf1248f5336f8a8f79d17fe3.zip |
Bump glutin to 0.26.0
Fixes #4530.
Fixes #4072.
Fixes #1927.
Diffstat (limited to 'alacritty/src/event.rs')
-rw-r--r-- | alacritty/src/event.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index 8ecf6f00..441cb21e 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -19,7 +19,7 @@ use std::time::{Duration, Instant}; use glutin::dpi::PhysicalSize; use glutin::event::{ElementState, Event as GlutinEvent, ModifiersState, MouseButton, WindowEvent}; use glutin::event_loop::{ControlFlow, EventLoop, EventLoopProxy, EventLoopWindowTarget}; -use glutin::platform::desktop::EventLoopExtDesktop; +use glutin::platform::run_return::EventLoopExtRunReturn; #[cfg(all(feature = "wayland", not(any(target_os = "macos", windows))))] use glutin::platform::unix::EventLoopWindowTargetExtUnix; use log::info; |