We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c561786 commit 229d7f8Copy full SHA for 229d7f8
.changes/child-windows-macos.md
@@ -0,0 +1,7 @@
1
+---
2
+"tauri": "patch:bug"
3
+"tauri-runtime-wry": "patch:bug"
4
5
+
6
+Fix regression in creating child webviews on macOS and Windows, covering the whole window.
7
crates/tauri-runtime-wry/src/lib.rs
@@ -4364,7 +4364,7 @@ fn create_webview<T: UserEvent>(
4364
target_os = "ios",
4365
target_os = "android"
4366
))]
4367
- WebviewKind::WindowChild => webview_builder.build(&window),
+ WebviewKind::WindowChild => webview_builder.build_as_child(&window),
4368
WebviewKind::WindowContent => {
4369
#[cfg(any(
4370
target_os = "windows",
0 commit comments