From 9cfb0f4a09f2da076d41c74b5507ba256da181e3 Mon Sep 17 00:00:00 2001 From: MrAntix Date: Sun, 21 Jan 2024 13:14:09 +0000 Subject: feat(window): adds skip_taskbar for windows --- core/src/window/settings/windows.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/src/window') 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, } } } -- cgit