From 645712be3b54f98cf15f7a0758c4d1fd5a143aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filiph=20Sandstr=C3=B6m?= Date: Fri, 7 Jan 2022 00:12:28 +0100 Subject: [PATCH] EmojiInputDialog: Ensure that all buttons are equal width Previously we only set the min size which meant that some emoji buttons was larger than others :^) --- Userland/Libraries/LibGUI/EmojiInputDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGUI/EmojiInputDialog.cpp b/Userland/Libraries/LibGUI/EmojiInputDialog.cpp index 5553f0f3e5..2a0b269db6 100644 --- a/Userland/Libraries/LibGUI/EmojiInputDialog.cpp +++ b/Userland/Libraries/LibGUI/EmojiInputDialog.cpp @@ -64,7 +64,7 @@ EmojiInputDialog::EmojiInputDialog(Window* parent_window) builder.append(Utf32View(&code_points[index++], 1)); auto emoji_text = builder.to_string(); auto& button = horizontal_container.add