diff options
author | 2023-02-23 14:33:53 +0100 | |
---|---|---|
committer | 2023-03-14 11:31:15 +0100 | |
commit | ed7b61380473c7c88c25b5d4d17112b844a9364d (patch) | |
tree | b6c0c11ee9e476a53c8aa0abede1ede7197ca559 /src/window/settings/other.rs | |
parent | de4ae51e3cc30dc2ee1db1686b98a709f9552f80 (diff) | |
download | iced-ed7b61380473c7c88c25b5d4d17112b844a9364d.tar.gz iced-ed7b61380473c7c88c25b5d4d17112b844a9364d.tar.bz2 iced-ed7b61380473c7c88c25b5d4d17112b844a9364d.zip |
Added macOS platform specific options
Diffstat (limited to '')
-rw-r--r-- | src/window/settings/other.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/window/settings/other.rs b/src/window/settings/other.rs new file mode 100644 index 00000000..943d9f0d --- /dev/null +++ b/src/window/settings/other.rs @@ -0,0 +1,9 @@ +/// The platform specific window settings of an application. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] +pub struct PlatformSpecific; + +impl From<PlatformSpecific> for iced_winit::settings::PlatformSpecific { + fn from(_: PlatformSpecific) -> Self { + Default::default() + } +} |