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:
authormeta-androcto <meta.androcto1@gmail.com>2019-07-06 13:33:11 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-07-06 13:33:11 +0300
commitdaaff4199bb8a9bcf90319e48f4444989a3fc42a (patch)
tree9b2b814fb56dac1ab3d4ca8af164d3d746038aa6 /object_fracture_cell
parent64d89567923df223f50eeeaa2f79f93f23da74f6 (diff)
object_fracture_cell: minor ui tweaks: T61901
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()