diff options
author | 2022-07-18 18:37:41 +0200 | |
---|---|---|
committer | 2022-08-18 14:09:20 +0200 | |
commit | 277b848ad8df1e8d038e33707548a45d63a601db (patch) | |
tree | 1da6c7a5135fb5f5c40a237224daae3721b2f685 /src/window.rs | |
parent | 07cbed106467097543ff33d3b34e0e1ca6f695ae (diff) | |
download | iced-277b848ad8df1e8d038e33707548a45d63a601db.tar.gz iced-277b848ad8df1e8d038e33707548a45d63a601db.tar.bz2 iced-277b848ad8df1e8d038e33707548a45d63a601db.zip |
Remove `window::Mode` and introduce `Settings::visible`
Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows.
Diffstat (limited to 'src/window.rs')
-rw-r--r-- | src/window.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/window.rs b/src/window.rs index 71158816..eb5e17a6 100644 --- a/src/window.rs +++ b/src/window.rs @@ -1,12 +1,10 @@ //! 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; |