Fix shape hash being incorrectly calculated

pull/33/head
tobspr 4 years ago
parent bf79f17776
commit ca3f4ff02a

@ -163,6 +163,10 @@ export class ShapeDefinition extends BasicSerializableObject {
id += "--";
}
}
if (layerIndex < this.layers.length - 1) {
id += ":";
}
}
this.cachedHash = id;
return id;

Loading…
Cancel
Save