1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:55:08 +00:00

Add a little About app and hook it up to the system menu's "About..." entry.

Added icons and customizable text alignment to GLabel.
This commit is contained in:
Andreas Kling 2019-02-12 15:23:07 +01:00
parent d6326d6c2e
commit d74b131c27
11 changed files with 118 additions and 2 deletions

View file

@ -42,6 +42,7 @@ FontEditorWidget::FontEditorWidget(const String& path, RetainPtr<Font>&& edited_
};
auto* info_label = new GLabel(this);
info_label->set_text_alignment(TextAlignment::CenterLeft);
info_label->set_relative_rect({ 5, 110, 100, 20 });
auto* demo_label_1 = new GLabel(this);