From 398bf045c60d3aee62a31816c95297006ff0e55d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 15 Jun 2021 01:24:30 +0200 Subject: [PATCH] PixelPaint: Increase default size of new images from 1x1 to 480x360 --- Userland/Applications/PixelPaint/CreateNewImageDialog.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp b/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp index 01a7763455..b525b1f44c 100644 --- a/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp +++ b/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp @@ -66,6 +66,9 @@ CreateNewImageDialog::CreateNewImageDialog(GUI::Window* parent_window) width_spinbox.set_range(1, 16384); height_spinbox.set_range(1, 16384); + + width_spinbox.set_value(480); + height_spinbox.set_value(360); } }