1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-02 23:42:13 +00:00

PixelPaint: Don't allow creating empty layers or images

This commit is contained in:
Andreas Kling 2021-06-15 01:23:50 +02:00
parent 8731bc9ead
commit eb76b18ee3
2 changed files with 4 additions and 4 deletions

View file

@ -65,8 +65,8 @@ CreateNewLayerDialog::CreateNewLayerDialog(Gfx::IntSize const& suggested_size, G
m_layer_size.set_height(value);
};
width_spinbox.set_range(0, 16384);
height_spinbox.set_range(0, 16384);
width_spinbox.set_range(1, 16384);
height_spinbox.set_range(1, 16384);
width_spinbox.set_value(suggested_size.width());
height_spinbox.set_value(suggested_size.height());