From c9a45fb4c05dcdc1b3e3c9556aee2e906916d83e Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Mon, 29 Feb 2016 14:29:37 -0800 Subject: [PATCH] Use transparency in the window if we have rounded border corners. --- ports/glutin/window.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs index 6eb3d935032..8f5c1e56211 100644 --- a/ports/glutin/window.rs +++ b/ports/glutin/window.rs @@ -93,6 +93,7 @@ impl Window { let mut builder = glutin::WindowBuilder::new().with_title("Servo".to_string()) .with_decorations(!opts::get().no_native_titlebar) + .with_transparency(opts::get().no_native_titlebar) .with_dimensions(width, height) .with_gl(Window::gl_version()) .with_visibility(is_foreground)