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:
parent
8731bc9ead
commit
eb76b18ee3
2 changed files with 4 additions and 4 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue