Remove window::Mode and introduce Settings::visible

Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows.
This commit is contained in:
Héctor Ramón Jiménez 2022-07-18 18:37:41 +02:00
parent 07cbed1064
commit 277b848ad8
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
11 changed files with 52 additions and 121 deletions

View file

@ -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;