tidy up arrow function

snap7
Michael Ball 2021-07-06 15:14:14 -07:00
rodzic d8216d2487
commit e2aec2e7db
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -3071,9 +3071,9 @@ SpriteMorph.prototype.freshPalette = function (category) {
if (category === 'unified') {
more.unified = Object.values(more).reduce((x, y) => x.concat(y));
}
(more[category] || []).forEach(sel => {
(more[category] || []).forEach(sel =>
StageMorph.prototype.hiddenPrimitives[sel] = true
});
);
ide.flushBlocksCache(category);
ide.refreshPalette();
}