Applications: Convert 256 char font to 384 char font

This commit is contained in:
Hüseyin ASLITÜRK 2020-05-20 22:48:02 +03:00 committed by Andreas Kling
parent 8b3bd1a54b
commit ef49309807
Notes: sideshowbarker 2024-07-19 06:18:09 +09:00

View file

@ -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();