Explorar el Código

Only update sizes once when adding all filtered entities

master
Fen Dweller hace 6 años
padre
commit
d722f95dc5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js Ver fichero

@@ -2551,9 +2551,9 @@ function prepareEntities() {
const maker = availableEntities[category][element.value];
const entity = maker.constructor()
displayEntity(entity, entity.view, 0.1 + 0.8 * index / (count), 1);
updateSizes(true);
index += 1;
});
updateSizes(true);
});

Array.from(filterSets[filter.id]).map(name => [name, filter.render(name)]).sort(filterDefs[filter.id].sort).forEach(name => {


Cargando…
Cancelar
Guardar