diff --git a/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp b/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp index 3d8d925293..85b77d4c84 100644 --- a/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp +++ b/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp @@ -72,8 +72,8 @@ 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); + width_spinbox.set_value(510); + height_spinbox.set_value(356); } } diff --git a/Userland/Applications/PixelPaint/MainWidget.cpp b/Userland/Applications/PixelPaint/MainWidget.cpp index 07c6238cef..cbd875b967 100644 --- a/Userland/Applications/PixelPaint/MainWidget.cpp +++ b/Userland/Applications/PixelPaint/MainWidget.cpp @@ -794,7 +794,7 @@ void MainWidget::open_image_fd(int fd, String const& path) void MainWidget::create_default_image() { - auto image = Image::try_create_with_size({ 480, 360 }).release_value_but_fixme_should_propagate_errors(); + auto image = Image::try_create_with_size({ 510, 356 }).release_value_but_fixme_should_propagate_errors(); auto bg_layer = Layer::try_create_with_size(*image, image->size(), "Background").release_value_but_fixme_should_propagate_errors(); image->add_layer(*bg_layer);