PixelPaint: Don't allow creating empty layers or images

This commit is contained in:
Andreas Kling 2021-06-15 01:23:50 +02:00
commit eb76b18ee3
Notes: sideshowbarker 2024-07-18 12:14:11 +09:00
2 changed files with 4 additions and 4 deletions

View file

@ -64,8 +64,8 @@ CreateNewImageDialog::CreateNewImageDialog(GUI::Window* parent_window)
m_image_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);
}
}