mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix example showcase wasm window settings patch (#12608)
# Objective FIx this failed workflow: <https://github.com/bevyengine/bevy/actions/runs/8367408952/job/22909715870#step:7:11> ## Solution Make the required changes on fresh Bevy code and save a new patch
This commit is contained in:
parent
9264850a1c
commit
6c485c80e0
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
diff --git a/crates/bevy_window/src/window.rs b/crates/bevy_window/src/window.rs
|
diff --git a/crates/bevy_window/src/window.rs b/crates/bevy_window/src/window.rs
|
||||||
index 87cdfb050..1d87a0bf5 100644
|
index ccc861a78..0cae580cd 100644
|
||||||
--- a/crates/bevy_window/src/window.rs
|
--- a/crates/bevy_window/src/window.rs
|
||||||
+++ b/crates/bevy_window/src/window.rs
|
+++ b/crates/bevy_window/src/window.rs
|
||||||
@@ -266,9 +266,9 @@ impl Default for Window {
|
@@ -293,9 +293,9 @@ impl Default for Window {
|
||||||
transparent: false,
|
transparent: false,
|
||||||
focused: true,
|
focused: true,
|
||||||
window_level: Default::default(),
|
window_level: Default::default(),
|
||||||
|
@ -13,4 +13,4 @@ index 87cdfb050..1d87a0bf5 100644
|
||||||
+ canvas: Some("#bevy".to_string()),
|
+ canvas: Some("#bevy".to_string()),
|
||||||
window_theme: None,
|
window_theme: None,
|
||||||
visible: true,
|
visible: true,
|
||||||
}
|
skip_taskbar: false,
|
||||||
|
|
Loading…
Reference in a new issue