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. --- Userland/Libraries/LibGUI/EmojiInputDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries/LibGUI/EmojiInputDialog.cpp') diff --git a/Userland/Libraries/LibGUI/EmojiInputDialog.cpp b/Userland/Libraries/LibGUI/EmojiInputDialog.cpp index 7a25e701c3..b1ec3267c1 100644 --- a/Userland/Libraries/LibGUI/EmojiInputDialog.cpp +++ b/Userland/Libraries/LibGUI/EmojiInputDialog.cpp @@ -45,7 +45,7 @@ EmojiInputDialog::EmojiInputDialog(Window* parent_window) main_widget.set_frame_shadow(Gfx::FrameShadow::Raised); main_widget.set_fill_with_background_color(true); auto& main_layout = main_widget.set_layout(); - main_layout.set_margins({ 1, 1, 1, 1 }); + main_layout.set_margins(1); main_layout.set_spacing(0); auto code_points = supported_emoji_code_points(); -- cgit v1.2.3