Skip to content

Commit

Permalink
fix(api): missing transparent flag on WindowOptions (#1764)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed May 10, 2021
1 parent 5edda4b commit 08c1c5c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changes/api-transparent-window.md
@@ -0,0 +1,5 @@
---
"api": patch
---

Adds `transparent?: boolean` to the `WindowOptions` interface.
2 changes: 2 additions & 0 deletions tooling/api/src/window.ts
Expand Up @@ -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. */
Expand Down

0 comments on commit 08c1c5c

Please sign in to comment.