Skip to content

Commit

Permalink
fix: default focused to true
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Nov 20, 2022
1 parent b7b5f04 commit ece3e8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/focused-true.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tao": "patch"
---

Change `WebviewAttributes::focused` default to `true`.
2 changes: 1 addition & 1 deletion src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ impl Default for WindowAttributes {
window_icon: None,
window_menu: None,
preferred_theme: None,
focused: false,
focused: true,
content_protection: false,
}
}
Expand Down

0 comments on commit ece3e8f

Please sign in to comment.