mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 03:02:28 +03:00
fix(api): missing transparent
flag on WindowOptions
(#1764)
This commit is contained in:
parent
5edda4ba08
commit
08c1c5ca5c
5
.changes/api-transparent-window.md
Normal file
5
.changes/api-transparent-window.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"api": patch
|
||||
---
|
||||
|
||||
Adds `transparent?: boolean` to the `WindowOptions` interface.
|
@ -687,6 +687,8 @@ export interface WindowOptions {
|
||||
title?: string
|
||||
/** Whether the window is in fullscreen mode or not. */
|
||||
fullscreen?: boolean
|
||||
/** Whether the window is transparent or not. */
|
||||
transparent?: boolean
|
||||
/** Whether the window should be maximized upon creation or not. */
|
||||
maximized?: boolean
|
||||
/** Whether the window should be immediately visible upon creation or not. */
|
||||
|
Loading…
Reference in New Issue
Block a user