From df04f94b50b65bdec5dbcb4315fc263b30fbb338 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 26 Aug 2010 09:30:52 +0000 Subject: [PATCH] bugfix [#23520] Smoke broken - UI doesn't allow particle system selection --- release/scripts/ui/properties_physics_smoke.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release/scripts/ui/properties_physics_smoke.py b/release/scripts/ui/properties_physics_smoke.py index c1b088da785..cf91705318e 100644 --- a/release/scripts/ui/properties_physics_smoke.py +++ b/release/scripts/ui/properties_physics_smoke.py @@ -97,10 +97,10 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel, bpy.types.Panel): col = split.column() col.prop(flow, "use_outflow") col.label(text="Particle System:") - col.prop_search(flow, "psys", ob, "particle_systems", text="") + col.prop_search(flow, "particle_system", ob, "particle_systems", text="") sub = col.column() - sub.active = not md.flow_settings.outflow + sub.active = not md.flow_settings.use_outflow sub.prop(flow, "initial_velocity", text="Initial Velocity") sub = sub.column() @@ -109,7 +109,7 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel, bpy.types.Panel): sub = split.column() - sub.active = not md.flow_settings.outflow + sub.active = not md.flow_settings.use_outflow sub.label(text="Behavior:") sub.prop(flow, "temperature") sub.prop(flow, "density")