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:
parent
8b3bd1a54b
commit
ef49309807
1 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue