From 2515593828a851c110cdca0f6e88d0f01495eeee 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 579441b843..5c60d871b5 100644 --- a/crates/bevy_window/src/window.rs +++ b/crates/bevy_window/src/window.rs @@ -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(),