1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

PixelPaint: Increase default size of new images from 1x1 to 480x360

This commit is contained in:
Andreas Kling 2021-06-15 01:24:30 +02:00
parent eb76b18ee3
commit 398bf045c6

View file

@ -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);
}
}