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

brain rule

Was missing from rna renaming in rBeee445590a29.
This commit is contained in:
Philipp Oeser 2019-08-30 14:32:58 +02:00
parent d5d3dc4189
commit f7b47ce16d
Notes: blender-bot 2023-02-14 06:23:08 +01:00
Referenced by issue #69324, Console error in particle systems using "Follow Leader" boid brain rule
1 changed files with 1 additions and 1 deletions

View File

@ -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)