Skip to content

Commit bda987d

Browse files
florealcart
authored andcommitted
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 987d0aa commit bda987d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_window/src/window.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ pub struct Window {
209209
impl Default for Window {
210210
fn default() -> Self {
211211
Self {
212-
title: "Bevy App".to_owned(),
212+
title: "App".to_owned(),
213213
cursor: Default::default(),
214214
present_mode: Default::default(),
215215
mode: Default::default(),

0 commit comments

Comments
 (0)