diff options
author | 2023-01-31 06:29:21 +0100 | |
---|---|---|
committer | 2023-02-24 13:19:48 +0100 | |
commit | baf51a8fcffc78e4ca20f7dcbba18ca3655f2840 (patch) | |
tree | fd7ba1920ac0ff57b6ddefd692d8cad5d57274cd /src/settings.rs | |
parent | b9a9576207ddfc7afd89da30b7cfc7ca0d7e335c (diff) | |
download | iced-baf51a8fcffc78e4ca20f7dcbba18ca3655f2840.tar.gz iced-baf51a8fcffc78e4ca20f7dcbba18ca3655f2840.tar.bz2 iced-baf51a8fcffc78e4ca20f7dcbba18ca3655f2840.zip |
Draft `glyphon` implementation of text pipeline for `iced_wgpu`
Diffstat (limited to 'src/settings.rs')
-rw-r--r-- | src/settings.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings.rs b/src/settings.rs index 0eb3e62d..266ad404 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -28,7 +28,7 @@ pub struct Settings<Flags> { /// The text size that will be used by default. /// - /// The default value is `20.0`. + /// The default value is `16.0`. pub default_text_size: f32, /// If enabled, spread text workload in multiple threads when multiple cores @@ -97,7 +97,7 @@ where window: Default::default(), flags: Default::default(), default_font: Default::default(), - default_text_size: 20.0, + default_text_size: 16.0, text_multithreading: false, antialiasing: false, exit_on_close_request: true, |