From 85a7cebd537d3782299be180dd1859555d2e12d0 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 3 Aug 2019 16:14:23 -0400 Subject: [PATCH] UI: Fix Small inconsistency in particle emission This property was being called something else depending on the distribution type --- release/scripts/startup/bl_ui/properties_particle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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':