mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
Applications: Convert 256 char font to 384 char font
This commit is contained in:
parent
8b3bd1a54b
commit
ef49309807
Notes:
sideshowbarker
2024-07-19 06:18:09 +09:00
Author: https://github.com/asliturk Commit: https://github.com/SerenityOS/serenity/commit/ef49309807a Pull-request: https://github.com/SerenityOS/serenity/pull/2310 Reviewed-by: https://github.com/linusg
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 app_icon = GUI::Icon::default_icon("app-font-editor");
|
||||||
|
|
||||||
auto window = GUI::Window::construct();
|
auto window = GUI::Window::construct();
|
||||||
|
|
Loading…
Reference in a new issue