Merge pull request #3373 from Aircoookie/ripple-tweak

2D Ripple and Meteor effect tweak
This commit is contained in:
Frank
2023-09-17 18:48:43 +02:00
parent de4a409c7b
commit 51999b65ad
2 changed files with 11 additions and 9 deletions

View File

@@ -1595,7 +1595,7 @@ function updateSelectedPalette(s)
if (s > 1 && s < 6) {
cd[0].classList.remove('hide'); // * Color 1
if (s > 2) cd[1].classList.remove('hide'); // * Color 1 & 2
if (s == 5) cd[2].classList.remove('hide'); // all colors
if (s > 3) cd[2].classList.remove('hide'); // all colors
} else {
for (let i of cd) if (i.dataset.hide == '1') i.classList.add('hide');
}