diff options
author | 2019-11-25 15:00:53 +0100 | |
---|---|---|
committer | 2019-11-25 15:00:53 +0100 | |
commit | 84874ac5dc2dc787833bcebf37751735f4c4ab42 (patch) | |
tree | 50314f680cd8597cf30b89c0236842bec1d834a9 /src/sandbox.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/sandbox.rs')
-rw-r--r-- | src/sandbox.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sandbox.rs b/src/sandbox.rs index 60e3be14..acf7f5e0 100644 --- a/src/sandbox.rs +++ b/src/sandbox.rs @@ -1,4 +1,4 @@ -use crate::{Application, Command, Element}; +use crate::{Application, Command, Element, Settings}; /// A sandboxed [`Application`]. /// @@ -19,10 +19,10 @@ use crate::{Application, Command, Element}; /// to remove the use of [`Command`]: /// /// ```no_run -/// use iced::{button, Button, Column, Element, Sandbox, Text}; +/// use iced::{button, Button, Column, Element, Sandbox, Settings, Text}; /// /// pub fn main() { -/// Counter::run() +/// Counter::run(Settings::default()) /// } /// /// #[derive(Default)] @@ -121,11 +121,11 @@ pub trait Sandbox { /// It should probably be that last thing you call in your `main` function. /// /// [`Sandbox`]: trait.Sandbox.html - fn run() + fn run(settings: Settings) where Self: 'static + Sized, { - <Self as Application>::run() + <Self as Application>::run(settings) } } |