summaryrefslogtreecommitdiff
path: root/src/display.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/display.rs
parent2434547fce7bf47a848f088f2600e8ba7027a62b (diff)
downloadalacritty-021b424858d0b2fcf50c4199e152e93596cc8d5d.tar.gz
alacritty-021b424858d0b2fcf50c4199e152e93596cc8d5d.zip
Remove re-export of glutin size types
Diffstat (limited to 'src/display.rs')
-rw-r--r--src/display.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/display.rs b/src/display.rs
index f4d48120..6ab622f2 100644
--- a/src/display.rs
+++ b/src/display.rs
@@ -18,8 +18,8 @@ use std::sync::mpsc;
use std::f64;
use parking_lot::MutexGuard;
+use glutin::dpi::{LogicalPosition, PhysicalSize};
-use {LogicalPosition, PhysicalSize, Rgb};
use cli;
use config::Config;
use font::{self, Rasterize};
@@ -27,9 +27,8 @@ use meter::Meter;
use renderer::{self, GlyphCache, QuadRenderer};
use term::{Term, SizeInfo, RenderableCell};
use sync::FairMutex;
-
use window::{self, Window};
-
+use Rgb;
#[derive(Debug)]
pub enum Error {