From ef49309807a43294fd2d730919921f9ef4100131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=BCseyin=20ASLIT=C3=9CRK?= Date: Wed, 20 May 2020 22:48:02 +0300 Subject: [PATCH] Applications: Convert 256 char font to 384 char font --- Applications/FontEditor/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Applications/FontEditor/main.cpp b/Applications/FontEditor/main.cpp index db0a1e138b..9f54b2c42d 100644 --- a/Applications/FontEditor/main.cpp +++ b/Applications/FontEditor/main.cpp @@ -70,6 +70,10 @@ int main(int argc, char** argv) } } + // Convert 256 char font to 384 char font. + if (edited_font->type() == Gfx::FontTypes::Default) + edited_font->set_type(Gfx::FontTypes::LatinExtendedA); + auto app_icon = GUI::Icon::default_icon("app-font-editor"); auto window = GUI::Window::construct();