From 1a66f487a5a6efe8d236bf36a919bac303129ef3 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 18 May 2021 08:51:20 -0400 Subject: [PATCH] 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). --- Userland/Games/2048/GameSizeDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Games/2048/GameSizeDialog.cpp b/Userland/Games/2048/GameSizeDialog.cpp index fee71d8d9f..52f30d7216 100644 --- a/Userland/Games/2048/GameSizeDialog.cpp +++ b/Userland/Games/2048/GameSizeDialog.cpp @@ -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);