Skip to content

Commit

Permalink
chore: windowOptions supports backgroundColor
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed Nov 28, 2022
1 parent 7e12f9d commit 3daafe8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/src/window_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ class WindowManager {
if (options?.alwaysOnTop != null)
await setAlwaysOnTop(options!.alwaysOnTop!);
if (options?.fullScreen != null) await setFullScreen(options!.fullScreen!);
if (options?.backgroundColor != null)
await setBackgroundColor(options!.backgroundColor!);
if (options?.skipTaskbar != null)
await setSkipTaskbar(options!.skipTaskbar!);
if (options?.title != null) await setTitle(options!.title!);
Expand Down

0 comments on commit 3daafe8

Please sign in to comment.