aboutsummaryrefslogtreecommitdiff
path: root/src/window.rs
diff options
context:
space:
mode:
authorChristian Duerr <chrisduerr@users.noreply.github.com>2018-11-10 17:04:26 +0000
committerGitHub <noreply@github.com>2018-11-10 17:04:26 +0000
commit021b424858d0b2fcf50c4199e152e93596cc8d5d (patch)
tree3ccc2b691b9bc1423183866cfe639f14b8f2de76 /src/window.rs
parent2434547fce7bf47a848f088f2600e8ba7027a62b (diff)
downloadalacritty-021b424858d0b2fcf50c4199e152e93596cc8d5d.tar.gz
alacritty-021b424858d0b2fcf50c4199e152e93596cc8d5d.zip
Remove re-export of glutin size types
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/window.rs b/src/window.rs
index a19fd9c5..31b7c766 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -24,12 +24,11 @@ use glutin::{
self, ContextBuilder, ControlFlow, Event, EventsLoop,
MouseCursor as GlutinMouseCursor, WindowBuilder,
};
-
-use {LogicalPosition, LogicalSize, MouseCursor, PhysicalSize};
-
+use glutin::dpi::{LogicalPosition, LogicalSize, PhysicalSize};
use cli::Options;
use config::{Decorations, WindowConfig};
+use MouseCursor;
#[cfg(windows)]
static WINDOW_ICON: &'static [u8] = include_bytes!("../assets/windows/alacritty.ico");