From 6b208a6958a32594cf1248f5336f8a8f79d17fe3 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Fri, 11 Dec 2020 03:40:32 +0300 Subject: Bump glutin to 0.26.0 Fixes #4530. Fixes #4072. Fixes #1927. --- alacritty/src/event.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src/event.rs') 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; -- cgit