From 21c4fe2117d60a2895793eb0080c75a70e007e21 Mon Sep 17 00:00:00 2001 From: "s.martinez" Date: Tue, 24 Jun 2025 18:08:40 +0200 Subject: [PATCH] clean: change typo --- operators/shape.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operators/shape.py b/operators/shape.py index 6320acf..a8861ce 100644 --- a/operators/shape.py +++ b/operators/shape.py @@ -48,9 +48,9 @@ class RP_OT_create_shape(Operator): mesh.from_pydata(verts, edges, faces) - picker_cols = [col for col in bpy.data.collections if col.rig_picker.link_shape] + picker_selected_cols = [col for col in bpy.data.collections if col.rig_picker.link_shape] - for col in picker_cols or [scn.collection]: + for col in picker_selected_cols or [scn.collection]: col.objects.link(ob) ob.location.z = 0.05