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 3ce3318 commit 7b32b50Copy full SHA for 7b32b50
crates/tauri-runtime-wry/src/lib.rs
@@ -504,7 +504,7 @@ impl WindowEventWrapper {
504
new_inner_size: PhysicalSizeWrapper(**new_inner_size).into(),
505
},
506
TaoWindowEvent::Focused(focused) => {
507
- #[cfg(any(target_os = "linux", target_os = "macos"))]
+ #[cfg(not(windows))]
508
return Self(Some(WindowEvent::Focused(*focused)));
509
// on multiwebview mode, if there's no focused webview, it means we're receiving a direct window focus change
510
// (without receiving a webview focus, such as when clicking the taskbar app icon or using Alt + Tab)
0 commit comments