summaryrefslogtreecommitdiffstats
path: root/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-03-14 11:50:18 +0100
committerLibravatar GitHub <noreply@github.com>2023-03-14 11:50:18 +0100
commitd7fffaa801423ae989fa7693f5b1cb424194e1ff (patch)
tree7620887744718bb3b93b707130dea0035d93e007 /src/window.rs
parentde4ae51e3cc30dc2ee1db1686b98a709f9552f80 (diff)
parent4405a3d483286faf962930ca3b294b34f86bd2f4 (diff)
downloadiced-d7fffaa801423ae989fa7693f5b1cb424194e1ff.tar.gz
iced-d7fffaa801423ae989fa7693f5b1cb424194e1ff.tar.bz2
iced-d7fffaa801423ae989fa7693f5b1cb424194e1ff.zip
Merge pull request #1730 from casperstorm/feat/platform-specific-window-options
Platform specific `window` options.
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.rs b/src/window.rs
index 5a199580..aba4bce8 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -6,6 +6,6 @@ pub mod icon;
pub use icon::Icon;
pub use position::Position;
-pub use settings::Settings;
+pub use settings::{PlatformSpecific, Settings};
pub use crate::runtime::window::*;