[Bf-blender-cvs] [85a7cebd537] master: UI: Fix Small inconsistency in particle emission

Your Name noreply at git.blender.org
Sat Aug 3 22:22:13 CEST 2019


Commit: 85a7cebd537d3782299be180dd1859555d2e12d0
Author: Your Name
Date:   Sat Aug 3 16:14:23 2019 -0400
Branches: master
https://developer.blender.org/rB85a7cebd537d3782299be180dd1859555d2e12d0

UI: Fix Small inconsistency in particle emission

This property was being called something
else depending on the distribution type

===================================================================

M	release/scripts/startup/bl_ui/properties_particle.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index c4b6168be61..02b809cdfb4 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -315,7 +315,7 @@ class PARTICLE_PT_emission_source(ParticleButtonsPanel, Panel):
             col.prop(part, "invert_grid")
             col.prop(part, "hexagonal_grid")
         else:
-            col.prop(part, "use_emit_random")
+            col.prop(part, "use_emit_random", text="Random Order")
             col.prop(part, "use_even_distribution")
 
         if part.emit_from == 'FACE' or part.emit_from == 'VOLUME':



More information about the Bf-blender-cvs mailing list