From bda987dca7b0a88c60d913c97f0dda8e29befbf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Flor=C3=A9al=20Toumikian?= <386442+floreal@users.noreply.github.com> Date: Sun, 30 Jul 2023 00:20:45 +0200 Subject: [PATCH] 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. --- crates/bevy_window/src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_window/src/window.rs b/crates/bevy_window/src/window.rs index b5135751845f1..f73fe315830fc 100644 --- a/crates/bevy_window/src/window.rs +++ b/crates/bevy_window/src/window.rs @@ -209,7 +209,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(),