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:
authorJens Ole Wund <bjornmose@gmx.net>2010-06-30 02:30:55 +0400
committerJens Ole Wund <bjornmose@gmx.net>2010-06-30 02:30:55 +0400
commitf7f44696ba964cb6466254c2471c93daeef93406 (patch)
treedabd9671881d7c877fe1e94ba39e7c153e0b560d /release
parent35dd09a9efc7840a79e7ef345f5e8850c41f77b1 (diff)
ui glitch fix [#22667]
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_physics_softbody.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/ui/properties_physics_softbody.py b/release/scripts/ui/properties_physics_softbody.py
index 43404a5ba8b..d253943b724 100644
--- a/release/scripts/ui/properties_physics_softbody.py
+++ b/release/scripts/ui/properties_physics_softbody.py
@@ -186,10 +186,11 @@ class PHYSICS_PT_softbody_edge(PhysicButtonsPanel):
sub.active = softbody.stiff_quads
sub.prop(softbody, "shear")
- col.prop(softbody, "new_aero", text="Aero")
+ col.label(text="Extra Aerodynamics:")
+ col.prop(softbody, "aero", text="Factor")
sub = col.column()
- sub.enabled = softbody.new_aero
- sub.prop(softbody, "aero", text="Factor")
+ sub.enabled = softbody.aero > 0
+ sub.prop(softbody, "new_aero", text="Straw Dynamics")
col.label(text="Collision:")
col.prop(softbody, "edge_collision", text="Edge")