Skip to content

Commit

Permalink
fix(mesh): fix regression in client-side equivalences rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
jbms committed Apr 8, 2019
1 parent 742c58d commit 97c522b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neuroglancer/mesh/frontend.ts
Expand Up @@ -238,7 +238,7 @@ export class MeshLayer extends PerspectiveViewRenderLayer {
const {renderScaleHistogram} = this.displayState;
const fragmentChunks = this.source.fragmentSource.chunks;

forEachVisibleSegment(displayState, (rootObjectId, objectId) => {
forEachVisibleSegment(displayState, (objectId, rootObjectId) => {
const key = getObjectKey(objectId);
const manifestChunk = manifestChunks.get(key);
if (manifestChunk === undefined) return;
Expand Down

0 comments on commit 97c522b

Please sign in to comment.