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:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_particle.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index d4378b0d094..eceefc70b5c 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -476,7 +476,12 @@ class PARTICLE_PT_physics(ParticleButtonsPanel, Panel):
col.label(text="Integration:")
col.prop(part, "integrator", text="")
col.prop(part, "timestep")
- col.prop(part, "subframes")
+ sub = col.row()
+ if part.adaptive_subframes:
+ sub.prop(part, "courant_target", text="Threshold")
+ else:
+ sub.prop(part, "subframes")
+ sub.prop(part, "adaptive_subframes", text="")
row = layout.row()
row.prop(part, "use_size_deflect")
@@ -983,7 +988,7 @@ class PARTICLE_PT_draw(ParticleButtonsPanel, Panel):
col.label(text="Color:")
col.prop(part, "draw_color", text="")
sub = col.row()
- sub.active = part.draw_color in ('VELOCITY', 'ACCELERATION')
+ sub.active = (part.draw_color in {'VELOCITY', 'ACCELERATION'})
sub.prop(part, "color_maximum", text="Max")
if (path):