diff options
Diffstat (limited to 'alacritty/src/display.rs')
-rw-r--r-- | alacritty/src/display.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/display.rs b/alacritty/src/display.rs index fcb87604..13e0454a 100644 --- a/alacritty/src/display.rs +++ b/alacritty/src/display.rs @@ -31,9 +31,9 @@ use parking_lot::MutexGuard; #[cfg(not(any(target_os = "macos", windows)))] use wayland_client::{Display as WaylandDisplay, EventQueue}; -use font::{self, Rasterize}; #[cfg(target_os = "macos")] use font::set_font_smoothing; +use font::{self, Rasterize}; use alacritty_terminal::config::{Font, StartupMode}; use alacritty_terminal::event::{Event, OnResize}; |