1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:17:34 +00:00

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
parent 4af973fec6
commit 3a50ab3f4c

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