1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 04:37:35 +00:00

LibGUI: Add a simple GGroupBox widget.

This needs some work on the visual side, but it gets the job done already.
This commit is contained in:
Andreas Kling 2019-04-10 05:52:15 +02:00
parent b980c32662
commit f6543c5946
5 changed files with 65 additions and 10 deletions

View file

@ -26,7 +26,7 @@ int main(int argc, char** argv)
auto* window = new GWindow;
window->set_title("FontEditor");
window->set_rect({ 50, 50, 390, 295 });
window->set_rect({ 50, 50, 390, 325 });
auto* font_editor = new FontEditorWidget(path, move(edited_font));
window->set_main_widget(font_editor);
window->set_should_exit_event_loop_on_close(true);