[Bf-blender-cvs] [f7b47ce16dd] master: Fix T69324: Console error in particle systems using "Follow Leader" boid brain rule

Philipp Oeser noreply at git.blender.org
Fri Aug 30 14:36:55 CEST 2019


Commit: f7b47ce16ddba4593e64840999d640ae91ddb1f5
Author: Philipp Oeser
Date:   Fri Aug 30 14:32:58 2019 +0200
Branches: master
https://developer.blender.org/rBf7b47ce16ddba4593e64840999d640ae91ddb1f5

Fix T69324: Console error in particle systems using "Follow Leader" boid
brain rule

Was missing from rna renaming in rBeee445590a29.

===================================================================

M	release/scripts/startup/bl_ui/properties_particle.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index ebbf278c5e7..0b8617e40ca 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -1196,7 +1196,7 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel, Panel):
                 row = layout.row()
                 row.prop(rule, "use_line")
                 sub = row.row()
-                sub.active = rule.line
+                sub.active = rule.use_line
                 sub.prop(rule, "queue_count")
             elif rule.type == 'AVERAGE_SPEED':
                 row.prop(rule, "speed", slider=True)



More information about the Bf-blender-cvs mailing list