summaryrefslogtreecommitdiffstats
path: root/alacritty_terminal
diff options
context:
space:
mode:
authorMihyaeru <mihyaeru21@gmail.com>2019-07-17 00:45:46 +0900
committerChristian Duerr <chrisduerr@users.noreply.github.com>2019-07-16 15:45:46 +0000
commit76dd84bef87f77c67bf5c23ee627163e93786b5d (patch)
tree1118e080f2f726060b76420bbb4465a1bdd75255 /alacritty_terminal
parent3c3239b1cb4b21ee1dec8ccfbc5ec957b6e66798 (diff)
Remove redundant use statement on macOS
Diffstat (limited to 'alacritty_terminal')
-rw-r--r--alacritty_terminal/src/window.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/alacritty_terminal/src/window.rs b/alacritty_terminal/src/window.rs
index 0292cab9..360cda87 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);
}