From 28a8e4a1053d462191f1c4f1c17050af785abb64 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Sat, 13 Nov 2021 13:54:30 +0000 Subject: [PATCH] ThemeEditor: Correct GroupBox margins Now that GroupBoxes have intrinsic margins, we don't need to provide such large margin values in the GML. --- Userland/Applications/ThemeEditor/ThemeEditor.gml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Userland/Applications/ThemeEditor/ThemeEditor.gml b/Userland/Applications/ThemeEditor/ThemeEditor.gml index 79577a2c31..ab47b4499c 100644 --- a/Userland/Applications/ThemeEditor/ThemeEditor.gml +++ b/Userland/Applications/ThemeEditor/ThemeEditor.gml @@ -9,7 +9,7 @@ @GUI::GroupBox { layout: @GUI::HorizontalBoxLayout { - margins: [16, 8, 8, 8] + margins: [4, 4, 4, 4] } shrink_to_fit: true title: "Colors" @@ -27,7 +27,7 @@ @GUI::GroupBox { layout: @GUI::HorizontalBoxLayout { - margins: [16, 8, 8, 8] + margins: [4, 4, 4, 4] } shrink_to_fit: true title: "Flags" @@ -49,7 +49,7 @@ @GUI::GroupBox { layout: @GUI::HorizontalBoxLayout { - margins: [16, 8, 8, 8] + margins: [4, 4, 4, 4] } shrink_to_fit: true title: "Metrics" @@ -67,7 +67,7 @@ @GUI::GroupBox { layout: @GUI::HorizontalBoxLayout { - margins: [16, 8, 8, 8] + margins: [4, 4, 4, 4] } shrink_to_fit: true title: "Paths"