From ed7b61380473c7c88c25b5d4d17112b844a9364d Mon Sep 17 00:00:00 2001 From: Casper Storm Date: Thu, 23 Feb 2023 14:33:53 +0100 Subject: Added macOS platform specific options --- src/window/settings/other.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/window/settings/other.rs (limited to 'src/window/settings/other.rs') 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 for iced_winit::settings::PlatformSpecific { + fn from(_: PlatformSpecific) -> Self { + Default::default() + } +} -- cgit