mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Change default window title to "app" (#3417)
Implements the changes cart decided on in https://github.com/bevyengine/bevy/pull/3404#issuecomment-999806086 > - 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 ?
This commit is contained in:
parent
bb1538a139
commit
ef65548fba
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue