2048: Widen the settings window

It's currently too small to fit the text of some of the settings (in
particular, the "Target tile" text).
This commit is contained in:
Timothy Flynn 2021-05-18 08:51:20 -04:00 committed by Andreas Kling
parent f02a13c884
commit 1a66f487a5
Notes: sideshowbarker 2024-07-18 17:50:30 +09:00

View file

@ -19,7 +19,7 @@ GameSizeDialog::GameSizeDialog(GUI::Window* parent, size_t board_size, size_t ta
, m_target_tile_power(log2(target))
, m_evil_ai(evil_ai)
{
set_rect({ 0, 0, 200, 150 });
set_rect({ 0, 0, 250, 150 });
set_title("New Game");
set_icon(parent->icon());
set_resizable(false);