FontEditor: Add a ListView to sort glyphs by their Unicode block

This commit is contained in:
thankyouverycool 2022-02-13 15:18:39 -05:00 committed by Tim Flynn
commit aefb2bcf43
Notes: sideshowbarker 2024-07-17 18:45:32 +09:00
4 changed files with 210 additions and 151 deletions

View file

@ -41,7 +41,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
auto window = TRY(GUI::Window::try_create());
window->set_icon(app_icon.bitmap_for_size(16));
window->resize(440, 470);
window->resize(640, 470);
auto font_editor = TRY(window->try_set_main_widget<FontEditorWidget>());
font_editor->initialize_menubar(*window);