summaryrefslogtreecommitdiff
path: root/Userland/Applications/FontEditor
diff options
context:
space:
mode:
authorsin-ack <sin-ack@users.noreply.github.com>2021-08-17 00:11:38 +0000
committerAndreas Kling <kling@serenityos.org>2021-08-18 10:30:50 +0200
commite11d17761846b04c8cd3d0fe1254f0a19bd3ae0e (patch)
treec3ca91cfec0f742ba96df36dde3daa32e28373fa /Userland/Applications/FontEditor
parent9c9a5c55cb34c63f3b6d3bf36dcbc6c37a429677 (diff)
downloadserenity-e11d17761846b04c8cd3d0fe1254f0a19bd3ae0e.zip
Userland+LibGUI: Add shorthand versions of the Margins constructor
This allows for typing [8] instead of [8, 8, 8, 8] to specify the same margin on all edges, for example. The constructors follow CSS' style of specifying margins. The added constructors are: - Margins(int all): Sets the same margin on all edges. - Margins(int vertical, int horizontal): Sets the first argument to top and bottom margins, and the second argument to left and right margins. - Margins(int top, int vertical, int bottom): Sets the first argument to the top margin, the second argument to the left and right margins, and the third argument to the bottom margin.
Diffstat (limited to 'Userland/Applications/FontEditor')
-rw-r--r--Userland/Applications/FontEditor/FontEditor.cpp4
-rw-r--r--Userland/Applications/FontEditor/NewFontDialogPage1.gml2
-rw-r--r--Userland/Applications/FontEditor/NewFontDialogPage2.gml6
3 files changed, 6 insertions, 6 deletions
diff --git a/Userland/Applications/FontEditor/FontEditor.cpp b/Userland/Applications/FontEditor/FontEditor.cpp
index 73acf36f61..8dea764b03 100644
--- a/Userland/Applications/FontEditor/FontEditor.cpp
+++ b/Userland/Applications/FontEditor/FontEditor.cpp
@@ -60,12 +60,12 @@ static RefPtr<GUI::Window> create_font_preview_window(FontEditorWidget& editor)
auto& main_widget = window->set_main_widget<GUI::Widget>();
main_widget.set_fill_with_background_color(true);
main_widget.set_layout<GUI::VerticalBoxLayout>();
- main_widget.layout()->set_margins({ 2, 2, 2, 2 });
+ main_widget.layout()->set_margins(2);
main_widget.layout()->set_spacing(4);
auto& preview_box = main_widget.add<GUI::GroupBox>();
preview_box.set_layout<GUI::VerticalBoxLayout>();
- preview_box.layout()->set_margins({ 8, 8, 8, 8 });
+ preview_box.layout()->set_margins(8);
auto& preview_label = preview_box.add<GUI::Label>();
preview_label.set_font(editor.edited_font());
diff --git a/Userland/Applications/FontEditor/NewFontDialogPage1.gml b/Userland/Applications/FontEditor/NewFontDialogPage1.gml
index 0f560d1c2c..2f372622dc 100644
--- a/Userland/Applications/FontEditor/NewFontDialogPage1.gml
+++ b/Userland/Applications/FontEditor/NewFontDialogPage1.gml
@@ -1,6 +1,6 @@
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
- margins: [20, 20, 20, 20]
+ margins: [20]
}
@GUI::Widget {
diff --git a/Userland/Applications/FontEditor/NewFontDialogPage2.gml b/Userland/Applications/FontEditor/NewFontDialogPage2.gml
index e9ebf28656..266741bb18 100644
--- a/Userland/Applications/FontEditor/NewFontDialogPage2.gml
+++ b/Userland/Applications/FontEditor/NewFontDialogPage2.gml
@@ -1,6 +1,6 @@
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
- margins: [20, 20, 20, 20]
+ margins: [20]
}
@GUI::Widget {
@@ -11,7 +11,7 @@
title: "Metadata"
fixed_width: 200
layout: @GUI::VerticalBoxLayout {
- margins: [16, 8, 8, 8]
+ margins: [16, 8, 8]
}
@GUI::Widget {
@@ -125,7 +125,7 @@
@GUI::Widget {
name: "glyph_editor_container"
layout: @GUI::VerticalBoxLayout {
- margins: [5, 0, 0, 0]
+ margins: [5, 0, 0]
}
}