From c04b53dab857b641f7e899bbcb6bd38f2d065070 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 18 May 2016 09:39:03 -0700 Subject: [PATCH] glutin: On the Mac, capitalize the first letter of "Servo" in the menu bar. --- ports/glutin/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs index 40368e4ddf6..f09489f0093 100644 --- a/ports/glutin/window.rs +++ b/ports/glutin/window.rs @@ -77,7 +77,7 @@ fn builder_with_platform_options(mut builder: glutin::WindowBuilder) -> glutin:: // output file. builder = builder.with_activation_policy(ActivationPolicy::Prohibited) } - builder + builder.with_app_name(String::from("Servo")) } #[cfg(not(target_os = "macos"))]