LibGUI: Increase the width of a CommandPalette dialog

This commit is contained in:
networkException 2022-01-30 13:10:45 +01:00 committed by Andreas Kling
commit 3a50ab3f4c
Notes: sideshowbarker 2024-07-17 20:00:14 +09:00

View file

@ -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);