diff options
author | 2023-09-18 19:24:09 +0200 | |
---|---|---|
committer | 2023-09-18 19:24:09 +0200 | |
commit | 8eec0033dee816bfcc102fc4f511c8bfe08c14ee (patch) | |
tree | 5b247c4de81a055effaf6eb0683787141abbec16 /examples/editor | |
parent | 161a971d065b3254a2f11cb374d2c94c2d67646b (diff) | |
download | iced-8eec0033dee816bfcc102fc4f511c8bfe08c14ee.tar.gz iced-8eec0033dee816bfcc102fc4f511c8bfe08c14ee.tar.bz2 iced-8eec0033dee816bfcc102fc4f511c8bfe08c14ee.zip |
Remove unnecessary `monospaced` flag in `Font`
Diffstat (limited to 'examples/editor')
-rw-r--r-- | examples/editor/src/main.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/examples/editor/src/main.rs b/examples/editor/src/main.rs index 785dfb3b..5018b3cb 100644 --- a/examples/editor/src/main.rs +++ b/examples/editor/src/main.rs @@ -16,10 +16,7 @@ use std::sync::Arc; pub fn main() -> iced::Result { Editor::run(Settings { fonts: vec![include_bytes!("../fonts/icons.ttf").as_slice().into()], - default_font: Font { - monospaced: true, - ..Font::with_name("Hasklug Nerd Font Mono") - }, + default_font: Font::with_name("Hasklug Nerd Font Mono"), ..Settings::default() }) } |