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:
authorThomas Dinges <blender@dingto.org>2010-08-31 19:12:24 +0400
committerThomas Dinges <blender@dingto.org>2010-08-31 19:12:24 +0400
commit614eb41c5677139052c24a34f5d72c370f2a5702 (patch)
tree570267b15817b2d80983e5f9ab453f8c2e7ddee4
parent41a49a6bc92680cc97872ddf72420756e6ea06c8 (diff)
RNA Renaming Fixes for particle UI.
-rw-r--r--release/scripts/ui/properties_particle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py
index fbcc83240f1..c62e8cad4bf 100644
--- a/release/scripts/ui/properties_particle.py
+++ b/release/scripts/ui/properties_particle.py
@@ -487,12 +487,12 @@ class PARTICLE_PT_physics(ParticleButtonsPanel, bpy.types.Panel):
col.prop(boids, "air_ave_max", slider=True)
col.prop(boids, "air_personal_space")
row = col.row()
- row.active = (boids.use_land or boids.allow_climb) and boids.allow_flight
+ row.active = (boids.use_land or boids.use_climb) and boids.use_flight
row.prop(boids, "land_smooth")
sub = split.column()
col = sub.column(align=True)
- col.active = boids.use_land or boids.allow_climb
+ col.active = boids.use_land or boids.use_climb
col.prop(boids, "land_speed_max")
col.prop(boids, "land_jump_speed")
col.prop(boids, "land_acc_max", slider=True)