From a8c95097b5a11df3c310cb56f46407b5ad5a347b Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Sat, 20 Nov 2021 00:38:17 +0100 Subject: [PATCH] FontEditor: Convert UI from fixed to implicit height This gets rid of a magic number, and means that the widget will adapt nicely when the system font changes. --- Userland/Applications/FontEditor/FontEditorWindow.gml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Userland/Applications/FontEditor/FontEditorWindow.gml b/Userland/Applications/FontEditor/FontEditorWindow.gml index 6a201e292b..dad4c4c5a0 100644 --- a/Userland/Applications/FontEditor/FontEditorWindow.gml +++ b/Userland/Applications/FontEditor/FontEditorWindow.gml @@ -1,5 +1,6 @@ @GUI::Widget { fill_with_background_color: true + layout: @GUI::VerticalBoxLayout { spacing: 2 } @@ -18,21 +19,24 @@ @GUI::Widget { name: "left_column_container" + layout: @GUI::VerticalBoxLayout { } @GUI::Widget { name: "glyph_editor_container" + layout: @GUI::VerticalBoxLayout { } } @GUI::Widget { - fixed_height: 22 layout: @GUI::VerticalBoxLayout { } @GUI::Widget { + shrink_to_fit: true + layout: @GUI::HorizontalBoxLayout { } @@ -60,12 +64,14 @@ @GUI::Widget { name: "right_column_container" + layout: @GUI::VerticalBoxLayout { spacing: 6 } @GUI::Widget { name: "glyph_map_container" + layout: @GUI::VerticalBoxLayout { } } @@ -74,6 +80,7 @@ name: "font_metadata_groupbox" title: "Metadata" fixed_height: 220 + layout: @GUI::VerticalBoxLayout { margins: [6, 6, 6, 6] } @@ -198,6 +205,7 @@ @GUI::Widget { fixed_height: 22 + layout: @GUI::HorizontalBoxLayout { }