Skip to content

Commit 2515593

Browse files
authored
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.
1 parent 0566e73 commit 2515593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_window/src/window.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ pub struct Window {
217217
impl Default for Window {
218218
fn default() -> Self {
219219
Self {
220-
title: "Bevy App".to_owned(),
220+
title: "App".to_owned(),
221221
cursor: Default::default(),
222222
present_mode: Default::default(),
223223
mode: Default::default(),

0 commit comments

Comments
 (0)