-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
fix(windows)!: restore webview focus for unstable feature #15625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Legend-Master
merged 14 commits into
tauri-apps:dev
from
Legend-Master:unstable-webview-focus
Jul 22, 2026
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
e416af9
Remove unwraps
Legend-Master 7d3a78e
Restore multi-webview focus
Legend-Master 6efcd06
Cleanup
Legend-Master 5de146c
Skip if already focused
Legend-Master 497a313
`has_children` is set to true for webview window on unstable feature
Legend-Master ff681c5
Forward the event for raw tao window
Legend-Master bfec024
Always handle focused events in `add_LostFocus`
Legend-Master 125c2e8
Clean up
Legend-Master a1c9322
Add change file
Legend-Master 8ca2b4f
Move out to a `add_focus_change_listeners` fn
Legend-Master a4c387e
move `add_focus_change_listeners` down to bottom
Legend-Master e353ab7
Merge branch 'dev' into unstable-webview-focus
Legend-Master ce3860e
Merge branch 'dev' into unstable-webview-focus
Legend-Master 4f1c912
Merge branch 'dev' into unstable-webview-focus
Legend-Master File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| tauri: minor:bug | ||
| tauri-runtime-wry: minor:bug | ||
| --- | ||
|
|
||
| Fix webview don't get focus when Alt-Tab back to the window if `unstable` feature is enabled on Windows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| tauri: minor:bug | ||
| tauri-runtime-wry: minor:bug | ||
| --- | ||
|
|
||
| Fix `WindowEvent::Focused` events emitted when dragging the window on Windows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| tauri-runtime-wry: minor:breaking | ||
| --- | ||
|
|
||
| `CreateWebviewOptions::focused_webview` now takes `Arc<Mutex<FocusState>>` instead of `Arc<Mutex<Option<String>>>` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lucasfernog You might want to double check if this is correct