Skip to content

Commit

Permalink
Fixed: Default window is now "App" instead of "Bevy App" (#9301)
Browse files Browse the repository at this point in the history
# 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.
  • Loading branch information
floreal authored Jul 29, 2023
1 parent 0566e73 commit 2515593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_window/src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 2515593

Please sign in to comment.