diff options
author | 2023-02-23 14:33:53 +0100 | |
---|---|---|
committer | 2023-03-14 11:31:15 +0100 | |
commit | ed7b61380473c7c88c25b5d4d17112b844a9364d (patch) | |
tree | b6c0c11ee9e476a53c8aa0abede1ede7197ca559 /src/window.rs | |
parent | de4ae51e3cc30dc2ee1db1686b98a709f9552f80 (diff) | |
download | iced-ed7b61380473c7c88c25b5d4d17112b844a9364d.tar.gz iced-ed7b61380473c7c88c25b5d4d17112b844a9364d.tar.bz2 iced-ed7b61380473c7c88c25b5d4d17112b844a9364d.zip |
Added macOS platform specific 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::*; |