2023-11-17 22:21:12 +00:00
|
|
|
diff --git a/crates/bevy_window/src/window.rs b/crates/bevy_window/src/window.rs
|
2024-03-03 14:33:30 +00:00
|
|
|
index 87cdfb050..1d87a0bf5 100644
|
2023-11-17 22:21:12 +00:00
|
|
|
--- a/crates/bevy_window/src/window.rs
|
|
|
|
+++ b/crates/bevy_window/src/window.rs
|
2024-03-03 14:33:30 +00:00
|
|
|
@@ -266,9 +266,9 @@ impl Default for Window {
|
2023-11-17 22:21:12 +00:00
|
|
|
transparent: false,
|
|
|
|
focused: true,
|
|
|
|
window_level: Default::default(),
|
2024-03-03 14:33:30 +00:00
|
|
|
- fit_canvas_to_parent: false,
|
|
|
|
+ fit_canvas_to_parent: true,
|
2023-11-17 22:21:12 +00:00
|
|
|
prevent_default_event_handling: true,
|
|
|
|
- canvas: None,
|
|
|
|
+ canvas: Some("#bevy".to_string()),
|
|
|
|
window_theme: None,
|
|
|
|
visible: true,
|
|
|
|
}
|