diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/display.rs | 3 | ||||
-rw-r--r-- | src/window.rs | 7 |
2 files changed, 1 insertions, 9 deletions
diff --git a/src/display.rs b/src/display.rs index 2d87f9ec..862be468 100644 --- a/src/display.rs +++ b/src/display.rs @@ -197,9 +197,6 @@ impl Display { api.clear(background_color); }); - // Show the window now that it's been initialized - window.show(); - Ok(Display { window: window, renderer: renderer, diff --git a/src/window.rs b/src/window.rs index 20c8956f..486bd590 100644 --- a/src/window.rs +++ b/src/window.rs @@ -190,8 +190,7 @@ impl Window { Window::platform_window_init(); let window = WindowBuilder::new() .with_title(title) - .with_transparency(true) - .with_visibility(false); + .with_transparency(true); let context = ContextBuilder::new() .with_vsync(true); let window = ::glutin::GlWindow::new(window, context, &event_loop)?; @@ -267,10 +266,6 @@ impl Window { self.window.resize(width, height); } - pub fn show(&self) { - self.window.show(); - } - /// Block waiting for events #[inline] pub fn wait_events<F>(&mut self, func: F) |