From 260b52215cbfc3be760e829c75ffe3aec53465bc Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 25 Oct 2020 18:50:27 +0100 Subject: [PATCH] HexEditor: Use the system default fixed width font --- Applications/HexEditor/HexEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/HexEditor/HexEditor.cpp b/Applications/HexEditor/HexEditor.cpp index dfd99b9a1f..4876876441 100644 --- a/Applications/HexEditor/HexEditor.cpp +++ b/Applications/HexEditor/HexEditor.cpp @@ -43,7 +43,7 @@ HexEditor::HexEditor() { set_scrollbars_enabled(true); - set_font(GUI::FontDatabase::the().get_by_name("Csilla Thin")); + set_font(Gfx::Font::default_fixed_width_font()); set_background_role(ColorRole::Base); set_foreground_role(ColorRole::BaseText); vertical_scrollbar().set_step(line_height());