diff options
author | 2023-03-14 11:22:06 +0100 | |
---|---|---|
committer | 2023-03-14 11:31:16 +0100 | |
commit | 4405a3d483286faf962930ca3b294b34f86bd2f4 (patch) | |
tree | 7620887744718bb3b93b707130dea0035d93e007 /src/window/settings/other.rs | |
parent | ed7b61380473c7c88c25b5d4d17112b844a9364d (diff) | |
download | iced-4405a3d483286faf962930ca3b294b34f86bd2f4.tar.gz iced-4405a3d483286faf962930ca3b294b34f86bd2f4.tar.bz2 iced-4405a3d483286faf962930ca3b294b34f86bd2f4.zip |
Re-export `settings::PlatformSpecific` from `iced_winit` directly
Diffstat (limited to '')
-rw-r--r-- | src/window/settings/other.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/window/settings/other.rs b/src/window/settings/other.rs deleted file mode 100644 index 943d9f0d..00000000 --- a/src/window/settings/other.rs +++ /dev/null @@ -1,9 +0,0 @@ -/// 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() - } -} |