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:
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py b/release/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py
index 3ddf464390a..d3ed8c05fdd 100644
--- a/release/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py
+++ b/release/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py
@@ -212,7 +212,7 @@ class PHYSICS_PT_rigid_body_constraint_limits_angular(PHYSICS_PT_rigidbody_const
rbc = ob.rigid_body_constraint
return (ob and rbc
- and (rbc.type in {'GENERIC_SPRING', 'HINGE', 'PISTON'})
+ and (rbc.type in {'GENERIC', 'GENERIC_SPRING', 'HINGE', 'PISTON'})
and context.engine in cls.COMPAT_ENGINES)
def draw(self, context):
@@ -241,7 +241,7 @@ class PHYSICS_PT_rigid_body_constraint_limits_angular(PHYSICS_PT_rigidbody_const
sub.prop(rbc, "limit_ang_x_lower", text="X Lower")
sub.prop(rbc, "limit_ang_x_upper", text="Upper")
- elif rbc.type == 'GENERIC_SPRING':
+ elif rbc.type in {'GENERIC', 'GENERIC_SPRING'}:
col = flow.column()
col.prop(rbc, "use_limit_ang_x")