Skip to content

Commit 5bc1230

Browse files
committed
Correct layers order
1 parent 6a1675e commit 5bc1230

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/explode_shape_layer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var contents = layer.property("Contents");
2424

2525
// Browse through contents array
26-
for(var i=1; i <= contents.numProperties; i++) {
26+
for(var i = contents.numProperties; i > 0; i--) {
2727

2828
// Get the original property
2929
var o_prop = contents.property(i);

0 commit comments

Comments
 (0)