1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 19:15:06 +00:00

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

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