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:
Floréal Toumikian 2023-07-30 00:20:45 +02:00 committed by GitHub
parent 0566e73af4
commit 2515593828
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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(),