[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31593] trunk/blender/release/scripts/ui/ properties_physics_smoke.py: bugfix [#23520] Smoke broken - UI doesn' t allow particle system selection

Campbell Barton ideasman42 at gmail.com
Thu Aug 26 11:30:53 CEST 2010


Revision: 31593
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31593
Author:   campbellbarton
Date:     2010-08-26 11:30:52 +0200 (Thu, 26 Aug 2010)

Log Message:
-----------
bugfix [#23520] Smoke broken - UI doesn't allow particle system selection

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_physics_smoke.py

Modified: trunk/blender/release/scripts/ui/properties_physics_smoke.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_physics_smoke.py	2010-08-26 09:12:10 UTC (rev 31592)
+++ trunk/blender/release/scripts/ui/properties_physics_smoke.py	2010-08-26 09:30:52 UTC (rev 31593)
@@ -97,10 +97,10 @@
                 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 @@
 
 
                 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")





More information about the Bf-blender-cvs mailing list