diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/src/window/settings/windows.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/window/settings/windows.rs b/core/src/window/settings/windows.rs index 45d753bd..d3bda259 100644 --- a/core/src/window/settings/windows.rs +++ b/core/src/window/settings/windows.rs @@ -9,6 +9,9 @@ pub struct PlatformSpecific { /// Drag and drop support pub drag_and_drop: bool, + + /// Whether show or hide the window icon in the taskbar. + pub skip_taskbar: bool, } impl Default for PlatformSpecific { @@ -16,6 +19,7 @@ impl Default for PlatformSpecific { Self { parent: None, drag_and_drop: true, + skip_taskbar: false, } } } |