Skip to content

Commit 3daafe8

Browse files
committed
chore: windowOptions supports backgroundColor
1 parent 7e12f9d commit 3daafe8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/src/window_manager.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ class WindowManager {
121121
if (options?.alwaysOnTop != null)
122122
await setAlwaysOnTop(options!.alwaysOnTop!);
123123
if (options?.fullScreen != null) await setFullScreen(options!.fullScreen!);
124+
if (options?.backgroundColor != null)
125+
await setBackgroundColor(options!.backgroundColor!);
124126
if (options?.skipTaskbar != null)
125127
await setSkipTaskbar(options!.skipTaskbar!);
126128
if (options?.title != null) await setTitle(options!.title!);

0 commit comments

Comments
 (0)