From 3a50ab3f4c1ec412ec25322cff52db7780db5fb4 Mon Sep 17 00:00:00 2001 From: networkException Date: Sun, 30 Jan 2022 13:10:45 +0100 Subject: [PATCH] LibGUI: Increase the width of a CommandPalette dialog --- Userland/Libraries/LibGUI/CommandPalette.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGUI/CommandPalette.cpp b/Userland/Libraries/LibGUI/CommandPalette.cpp index a230a43d87..3dd9107f92 100644 --- a/Userland/Libraries/LibGUI/CommandPalette.cpp +++ b/Userland/Libraries/LibGUI/CommandPalette.cpp @@ -169,7 +169,7 @@ CommandPalette::CommandPalette(GUI::Window& parent_window, ScreenPosition screen : GUI::Dialog(&parent_window, screen_position) { set_frameless(true); - resize(400, 300); + resize(450, 300); collect_actions(parent_window);