Skip to content

Commit

Permalink
Change default window title to "app" (#3417)
Browse files Browse the repository at this point in the history
Implements the changes cart decided on in #3404 (comment)

> - The default title should be changed to app so we don't leak the "bevy context" by default. app is generic enough that most people building real games will probably want to change it, but also generic enough that if someone doesn't manually set it, users won't bat an eye. I prefer this to binary names because they won't be consistent on all platforms / setups. A user (or developer) renaming a binary would implicitly rename the window title, which feels odd to me.
> - No debug info in the title by default. An opt in plugin for that would be nice though.

closes #3404 ?
  • Loading branch information
ickk committed Feb 4, 2022
1 parent bb1538a commit ef65548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_window/src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ pub struct WindowDescriptor {
impl Default for WindowDescriptor {
fn default() -> Self {
WindowDescriptor {
title: "bevy".to_string(),
title: "app".to_string(),
width: 1280.,
height: 720.,
position: None,
Expand Down

0 comments on commit ef65548

Please sign in to comment.