You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adds the ability to set the focused property from tauri.conf.json -- windows
* add set_focusable, pin tao
* fmt
---------
Co-authored-by: Lucas Nogueira <[email protected]>
Copy file name to clipboardExpand all lines: crates/tauri-cli/config.schema.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -366,6 +366,11 @@
366
366
"default": true,
367
367
"type": "boolean"
368
368
},
369
+
"focusable": {
370
+
"description": "Whether the window will be focusable or not.",
371
+
"default": true,
372
+
"type": "boolean"
373
+
},
369
374
"transparent": {
370
375
"description": "Whether the window is transparent or not.\n\n Note that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri > macOSPrivateApi`.\n WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`.",
Copy file name to clipboardExpand all lines: crates/tauri-cli/tauri.config.schema.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -347,6 +347,11 @@
347
347
"default": true,
348
348
"type": "boolean"
349
349
},
350
+
"focusable": {
351
+
"description": "Whether the window will be focusable or not.",
352
+
"default": true,
353
+
"type": "boolean"
354
+
},
350
355
"transparent": {
351
356
"description": "Whether the window is transparent or not.\n\n Note that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri > macOSPrivateApi`.\n WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`.",
Copy file name to clipboardExpand all lines: crates/tauri-schema-generator/schemas/config.schema.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -366,6 +366,11 @@
366
366
"default": true,
367
367
"type": "boolean"
368
368
},
369
+
"focusable": {
370
+
"description": "Whether the window will be focusable or not.",
371
+
"default": true,
372
+
"type": "boolean"
373
+
},
369
374
"transparent": {
370
375
"description": "Whether the window is transparent or not.\n\n Note that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri > macOSPrivateApi`.\n WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`.",
0 commit comments