Fixed canvas size limitations

This commit is contained in:
amritrai5757 2022-12-30 03:35:04 +00:00
parent 1d754f4852
commit c2014682d0
1 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,12 @@ const Startup = (() => {
var width = Util.getValue('size-width' + splashPostfix);
var height = Util.getValue('size-height' + splashPostfix);
var selectedPalette = Util.getText('palette-button' + splashPostfix);
//Checks whether width and height values are not invalid
if(width <= 0 || height <= 0) {
alert("Please enter valid width and height");
return;
}
newPixel(FileManager.defaultLPE(width,height));
resetInput();