mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fixed: Default window is now "App" instead of "Bevy App" (#9301)
# Objective Fixes #9298 - Default window title leaks "bevy" context ## Solution I just replaced the literal string "Bevy App" with "App" in Window's Default trait implementation.
This commit is contained in:
parent
0566e73af4
commit
2515593828
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ pub struct Window {
|
|||
impl Default for Window {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
title: "Bevy App".to_owned(),
|
||||
title: "App".to_owned(),
|
||||
cursor: Default::default(),
|
||||
present_mode: Default::default(),
|
||||
mode: Default::default(),
|
||||
|
|
Loading…
Reference in a new issue