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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2009-05-26 09:12:27 +0400
committerMatt Ebb <matt@mke3.net>2009-05-26 09:12:27 +0400
commita98f1f54bfc4a07b55643e111e39ce0e3b80b073 (patch)
tree5b6692fba7ceb966082ce799e155c8ba9f67e72a /release
parent64ddd9ea4fc675b676acd209ba3ddbe9bef62be7 (diff)
* Tiny cloth panel tweaks
Diffstat (limited to 'release')
-rw-r--r--release/ui/buttons_physic_cloth.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/release/ui/buttons_physic_cloth.py b/release/ui/buttons_physic_cloth.py
index 37ee6e4d546..12d218382ec 100644
--- a/release/ui/buttons_physic_cloth.py
+++ b/release/ui/buttons_physic_cloth.py
@@ -72,14 +72,15 @@ class Physic_PT_cloth_collision(PhysicButtonsPanel):
col = layout.column_flow()
col.itemR(cloth, "collision_quality", slider=True)
- col.itemR(cloth, "min_distance", text="MinDistance")
col.itemR(cloth, "friction")
+ col.itemR(cloth, "min_distance", text="MinDistance")
+
layout.itemR(cloth, "enable_self_collision", text="Self Collision")
- row = layout.row()
- row.itemR(cloth, "self_collision_quality", slider=True)
- row.itemR(cloth, "self_min_distance", text="MinDistance")
+ col = layout.column_flow()
+ col.itemR(cloth, "self_collision_quality", slider=True)
+ col.itemR(cloth, "self_min_distance", text="MinDistance")
class Physic_PT_cloth_stiffness(PhysicButtonsPanel):
__idname__ = "Physic_PT_stiffness"