Fix shape hash being incorrectly calculated

pull/4/head
tobspr 4 years ago
parent 7562df5e6f
commit c6771461a1

@ -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