From e11d17761846b04c8cd3d0fe1254f0a19bd3ae0e Mon Sep 17 00:00:00 2001 From: sin-ack Date: Tue, 17 Aug 2021 00:11:38 +0000 Subject: 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. --- Base/res/devel/templates/serenity-application/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Base') diff --git a/Base/res/devel/templates/serenity-application/main.cpp b/Base/res/devel/templates/serenity-application/main.cpp index d3e728bc71..bcb7bb1669 100644 --- a/Base/res/devel/templates/serenity-application/main.cpp +++ b/Base/res/devel/templates/serenity-application/main.cpp @@ -28,7 +28,7 @@ int main(int argc, char** argv) main_widget.set_fill_with_background_color(true); auto& layout = main_widget.set_layout(); - layout.set_margins({ 16, 16, 16, 16 }); + layout.set_margins(16); auto& button = main_widget.add("Click me!"); button.on_click = [&](auto) { -- cgit v1.2.3