From 76dd84bef87f77c67bf5c23ee627163e93786b5d Mon Sep 17 00:00:00 2001 From: Mihyaeru Date: Wed, 17 Jul 2019 00:45:46 +0900 Subject: [PATCH] Remove redundant use statement on macOS --- alacritty_terminal/src/window.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/alacritty_terminal/src/window.rs b/alacritty_terminal/src/window.rs index 0292cab..360cda8 100644 --- a/alacritty_terminal/src/window.rs +++ b/alacritty_terminal/src/window.rs @@ -403,7 +403,6 @@ impl Window { #[cfg(target_os = "macos")] pub fn set_simple_fullscreen(&self, fullscreen: bool) { - use glutin::os::macos::WindowExt; self.window().set_simple_fullscreen(fullscreen); }