diff options
author | 2023-03-14 11:50:18 +0100 | |
---|---|---|
committer | 2023-03-14 11:50:18 +0100 | |
commit | d7fffaa801423ae989fa7693f5b1cb424194e1ff (patch) | |
tree | 7620887744718bb3b93b707130dea0035d93e007 /src/window.rs | |
parent | de4ae51e3cc30dc2ee1db1686b98a709f9552f80 (diff) | |
parent | 4405a3d483286faf962930ca3b294b34f86bd2f4 (diff) | |
download | iced-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.rs | 2 |
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::*; |