diff options
author | 2021-07-22 18:27:33 +0700 | |
---|---|---|
committer | 2021-07-22 18:27:33 +0700 | |
commit | 357a8a95c9820651110fe4d80d8d33a2678827c0 (patch) | |
tree | 54f81a25537b793f6a83cda58549a6cb1e1d9eb9 /src/application.rs | |
parent | 217f5be8272f48a5b043d066ed1788cc127e1164 (diff) | |
download | iced-357a8a95c9820651110fe4d80d8d33a2678827c0.tar.gz iced-357a8a95c9820651110fe4d80d8d33a2678827c0.tar.bz2 iced-357a8a95c9820651110fe4d80d8d33a2678827c0.zip |
Introduce `text_multithreading` to `Settings`
Diffstat (limited to 'src/application.rs')
-rw-r--r-- | src/application.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/application.rs b/src/application.rs index ee532e0b..14bed2cb 100644 --- a/src/application.rs +++ b/src/application.rs @@ -208,6 +208,7 @@ pub trait Application: Sized { let renderer_settings = crate::renderer::Settings { default_font: settings.default_font, default_text_size: settings.default_text_size, + text_multithreading: settings.text_multithreading, antialiasing: if settings.antialiasing { Some(crate::renderer::settings::Antialiasing::MSAAx4) } else { |