summaryrefslogtreecommitdiffstats
path: root/src/window/settings/other.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/window/settings/other.rs')
-rw-r--r--src/window/settings/other.rs9
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()
+ }
+}