mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
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:
parent
f02a13c884
commit
1a66f487a5
Notes:
sideshowbarker
2024-07-18 17:50:30 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/1a66f487a5a Pull-request: https://github.com/SerenityOS/serenity/pull/7256
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue