Auto merge of #11252 - pcwalton:app-name, r=nox

glutin: On the Mac, capitalize the first letter of "Servo" in the menu bar.

r? @metajack (or whoever)

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11252)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-18 09:39:16 -07:00
commit e36e41191f

View file

@ -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"))]