diff options
author | 2021-07-21 18:59:24 +0700 | |
---|---|---|
committer | 2021-07-21 18:59:24 +0700 | |
commit | 72b3bf95de3f11812b1541fe2ffea76a515aee79 (patch) | |
tree | 12e353e37b9a1313872edadd64207fe2c1e4ce9f /src/window.rs | |
parent | 6793a7e00dc96425ae720309182ec8b03c076111 (diff) | |
download | iced-72b3bf95de3f11812b1541fe2ffea76a515aee79.tar.gz iced-72b3bf95de3f11812b1541fe2ffea76a515aee79.tar.bz2 iced-72b3bf95de3f11812b1541fe2ffea76a515aee79.zip |
Improve `window::Position` API
Diffstat (limited to 'src/window.rs')
-rw-r--r-- | src/window.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window.rs b/src/window.rs index a2883b62..7d441062 100644 --- a/src/window.rs +++ b/src/window.rs @@ -1,9 +1,11 @@ //! Configure the window of your application in native platforms. mod mode; +mod position; mod settings; pub mod icon; pub use icon::Icon; pub use mode::Mode; +pub use position::Position; pub use settings::Settings; |