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:
authorCampbell Barton <ideasman42@gmail.com>2010-08-26 13:30:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-26 13:30:52 +0400
commitdf04f94b50b65bdec5dbcb4315fc263b30fbb338 (patch)
tree47de2baa0c3bc2dea7f40cdd3f9079b9f1d019c8 /release
parent77b7ba0bfb6c5fd479a93118b681d6649796ea02 (diff)
bugfix [#23520] Smoke broken - UI doesn't allow particle system selection
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_physics_smoke.py6
1 files 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")