summaryrefslogtreecommitdiffstats
path: root/examples/editor/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/editor/src')
-rw-r--r--examples/editor/src/main.rs5
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()
})
}