diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-11-10 17:04:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-10 17:04:26 +0000 |
commit | 021b424858d0b2fcf50c4199e152e93596cc8d5d (patch) | |
tree | 3ccc2b691b9bc1423183866cfe639f14b8f2de76 /src/event.rs | |
parent | 2434547fce7bf47a848f088f2600e8ba7027a62b (diff) | |
download | alacritty-021b424858d0b2fcf50c4199e152e93596cc8d5d.tar.gz alacritty-021b424858d0b2fcf50c4199e152e93596cc8d5d.zip |
Remove re-export of glutin size types
Diffstat (limited to 'src/event.rs')
-rw-r--r-- | src/event.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event.rs b/src/event.rs index a61450f3..7a1faa70 100644 --- a/src/event.rs +++ b/src/event.rs @@ -23,7 +23,7 @@ use term::{Term, SizeInfo, TermMode, Search}; use util::limit; use util::fmt::Red; use window::Window; -use PhysicalSize; +use glutin::dpi::PhysicalSize; /// Byte sequences are sent to a `Notify` in response to some events pub trait Notify { |