summaryrefslogtreecommitdiff
path: root/Userland/Applications/ThemeEditor/ThemeEditor.gml
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2021-11-13 13:54:30 +0000
committerLinus Groh <mail@linusgroh.de>2021-11-13 17:59:51 +0000
commit28a8e4a1053d462191f1c4f1c17050af785abb64 (patch)
tree2d365448580c6163e24f91da332a4ac97135a287 /Userland/Applications/ThemeEditor/ThemeEditor.gml
parentf11277b50df7b84055ce6bb022aae37b24249123 (diff)
downloadserenity-28a8e4a1053d462191f1c4f1c17050af785abb64.zip
ThemeEditor: Correct GroupBox margins
Now that GroupBoxes have intrinsic margins, we don't need to provide such large margin values in the GML.
Diffstat (limited to 'Userland/Applications/ThemeEditor/ThemeEditor.gml')
-rw-r--r--Userland/Applications/ThemeEditor/ThemeEditor.gml8
1 files 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"