From d441dec5d8df7ed12f2369cd941034a004efa887 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 31 Dec 2020 14:30:00 +0100 Subject: LibGUI: Make the emojis in the emoji input dialog fit in the window GUI::Button has a default min-width of 32, so we have to override that here in order to squeeze all the emojis into the window. Fixes #4689. --- Libraries/LibGUI/EmojiInputDialog.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Libraries/LibGUI') diff --git a/Libraries/LibGUI/EmojiInputDialog.cpp b/Libraries/LibGUI/EmojiInputDialog.cpp index ef0a2d65c5..c1870c5af0 100644 --- a/Libraries/LibGUI/EmojiInputDialog.cpp +++ b/Libraries/LibGUI/EmojiInputDialog.cpp @@ -83,6 +83,7 @@ EmojiInputDialog::EmojiInputDialog(Window* parent_window) builder.append(Utf32View(&code_points[index++], 1)); auto emoji_text = builder.to_string(); auto& button = horizontal_container.add