diff options
author | 2021-03-25 11:27:31 +0100 | |
---|---|---|
committer | 2021-03-25 11:29:40 +0100 | |
commit | 883c7e71ae699a29c23b8f95b7335d015e5a985d (patch) | |
tree | 7010fec72aefa97a329eb4b29667e102017114dd /src | |
parent | ab8dcf91bdcad6c8d0a39802f2823e65aafa8f0a (diff) | |
download | iced-883c7e71ae699a29c23b8f95b7335d015e5a985d.tar.gz iced-883c7e71ae699a29c23b8f95b7335d015e5a985d.tar.bz2 iced-883c7e71ae699a29c23b8f95b7335d015e5a985d.zip |
Introduce `internal_backend` to `iced_wgpu::Settings`
Diffstat (limited to 'src')
-rw-r--r-- | src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.rs b/src/application.rs index 4c6d5b7f..83ce900a 100644 --- a/src/application.rs +++ b/src/application.rs @@ -206,7 +206,7 @@ pub trait Application: Sized { } else { None }, - ..crate::renderer::Settings::default() + ..crate::renderer::Settings::from_env() }; Ok(crate::runtime::application::run::< |