Merge pull request #2211 from MrAntix/windows_PlatformSpecific_skip_taskbar

feat(window): adds skip_taskbar for windows
This commit is contained in:
Héctor Ramón 2024-01-22 19:02:43 +01:00 committed by GitHub
commit a1114cada3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View file

@ -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,
}
}
}