Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'object_fracture_cell')
-rw-r--r--object_fracture_cell/operator.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/object_fracture_cell/operator.py b/object_fracture_cell/operator.py
index 7bc35a46..c01e866a 100644
--- a/object_fracture_cell/operator.py
+++ b/object_fracture_cell/operator.py
@@ -56,12 +56,12 @@ class FRACTURE_OT_Cell(Operator):
row = col.row()
#row.prop(cell_props, "source")
row.prop(cell_props, "source_vert_own")
- row.prop(cell_props, "source_particle_own")
- row = col.row()
- row.prop(cell_props, "source_random")
row.prop(cell_props, "source_vert_child")
row = col.row()
+ row.prop(cell_props, "source_particle_own")
row.prop(cell_props, "source_particle_child")
+ row = col.row()
+ row.prop(cell_props, "source_random")
row.prop(cell_props, "source_pencil")
box = layout.box()