From 53215be7aed0aeab3d5d1755949b84a20411d4da Mon Sep 17 00:00:00 2001 From: FrHun <28605587+frhun@users.noreply.github.com> Date: Mon, 4 Jul 2022 05:31:13 +0200 Subject: WidgetGallery: Repair GML layout on BasicsTab --- Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml b/Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml index bc3cf3538e..deca9112fc 100644 --- a/Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml +++ b/Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml @@ -5,7 +5,7 @@ } @GUI::GroupBox { - fixed_height: 95 + preferred_height: "fit" layout: @GUI::VerticalBoxLayout { margins: [8] } @@ -27,11 +27,13 @@ @GUI::Label { name: "enabled_label" text: "Label" + min_height: 16 } @GUI::Label { name: "disabled_label" text: "Disabled" + min_height: 16 enabled: false } } -- cgit v1.2.3