summaryrefslogtreecommitdiff
path: root/Userland/Games/2048
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-05-18 08:51:20 -0400
committerAndreas Kling <kling@serenityos.org>2021-05-18 16:48:39 +0200
commit1a66f487a5a6efe8d236bf36a919bac303129ef3 (patch)
treeda7d0051127f6a0364e2dbbdbef737d42cf1e369 /Userland/Games/2048
parentf02a13c8846af665cb41077fd97554187ac6baf8 (diff)
downloadserenity-1a66f487a5a6efe8d236bf36a919bac303129ef3.zip
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).
Diffstat (limited to 'Userland/Games/2048')
-rw-r--r--Userland/Games/2048/GameSizeDialog.cpp2
1 files changed, 1 insertions, 1 deletions
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);