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:
authorPablo Vazquez <contact@pablovazquez.art>2019-01-25 17:18:03 +0300
committerPablo Vazquez <contact@pablovazquez.art>2019-01-25 17:30:33 +0300
commit31abd2d877d4d68c20f028888e4f8edc9881f9c3 (patch)
treefabbf5e4c426b8c4d08fb61f37a44821868ac0f9
parentabd33f98237a515396a1e8a0a9982a214b5002e8 (diff)
UI: Particle. Remove unnecessary label for grid distribution
None of the other distribution modes have labels, and it's pretty clear anyway since the fields below have the Grid word in them.
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index f3f2f5b93d7..d53e6a935a5 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -313,7 +313,6 @@ class PARTICLE_PT_emission_source(ParticleButtonsPanel, Panel):
if part.emit_from == 'VERT':
col.prop(part, "use_emit_random", text="Random Order")
elif part.distribution == 'GRID':
- col.label(text="Grid")
col.prop(part, "invert_grid")
col.prop(part, "hexagonal_grid")
else: