mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
Merge pull request #114 from amritrai5757/master
Fixed removal of all the colors from palette
This commit is contained in:
commit
cfaa22c48a
@ -108,7 +108,15 @@ const PaletteBlock = (() => {
|
|||||||
startIndex = endIndex;
|
startIndex = endIndex;
|
||||||
endIndex = tmp;
|
endIndex = tmp;
|
||||||
}
|
}
|
||||||
|
// If there is only 1 color in palette and user wants to remove it, do nothing
|
||||||
|
if(coloursList.childElementCount == 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If user wants to remove all colors of palette, remove all colors except last one
|
||||||
|
if(coloursList.childElementCount == endIndex-startIndex+1) {
|
||||||
|
endIndex--;
|
||||||
|
}
|
||||||
for (let i=startIndex; i<=endIndex; i++) {
|
for (let i=startIndex; i<=endIndex; i++) {
|
||||||
coloursList.removeChild(coloursList.children[startIndex]);
|
coloursList.removeChild(coloursList.children[startIndex]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user