diff options
author | 2019-11-25 15:00:53 +0100 | |
---|---|---|
committer | 2019-11-25 15:00:53 +0100 | |
commit | 84874ac5dc2dc787833bcebf37751735f4c4ab42 (patch) | |
tree | 50314f680cd8597cf30b89c0236842bec1d834a9 /src/application.rs | |
parent | 862859142b50cf74a6fe423a4aa23fd63c152843 (diff) | |
parent | d70021fa68b556e20638f29e2e303f6d156afdb6 (diff) | |
download | iced-84874ac5dc2dc787833bcebf37751735f4c4ab42.tar.gz iced-84874ac5dc2dc787833bcebf37751735f4c4ab42.tar.bz2 iced-84874ac5dc2dc787833bcebf37751735f4c4ab42.zip |
Merge pull request #68 from hecrj/feature/application-settings
Allow `Application` configuration with `Settings`
Diffstat (limited to 'src/application.rs')
-rw-r--r-- | src/application.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/application.rs b/src/application.rs index f6d3fb90..a4d20e68 100644 --- a/src/application.rs +++ b/src/application.rs @@ -1,4 +1,4 @@ -use crate::{Command, Element}; +use crate::{Command, Element, Settings}; /// An interactive cross-platform application. /// @@ -19,10 +19,10 @@ use crate::{Command, Element}; /// before](index.html#overview). We just need to fill in the gaps: /// /// ```no_run -/// use iced::{button, Application, Button, Column, Command, Element, Text}; +/// use iced::{button, Application, Button, Column, Command, Element, Settings, Text}; /// /// pub fn main() { -/// Counter::run() +/// Counter::run(Settings::default()) /// } /// /// #[derive(Default)] @@ -132,12 +132,12 @@ pub trait Application: Sized { /// It should probably be that last thing you call in your `main` function. /// /// [`Application`]: trait.Application.html - fn run() + fn run(settings: Settings) where Self: 'static, { #[cfg(not(target_arch = "wasm32"))] - <Instance<Self> as iced_winit::Application>::run(); + <Instance<Self> as iced_winit::Application>::run(settings.into()); #[cfg(target_arch = "wasm32")] <Instance<Self> as iced_web::Application>::run(); |