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:
authorLuca Rood <dev@lucarood.com>2017-05-19 18:19:20 +0300
committerLuca Rood <dev@lucarood.com>2017-05-19 18:23:19 +0300
commitc62bec8d99bc17c861353cccf50e8b05ab0af973 (patch)
tree5986b23556943399139c02c2c7ec4be7b5d7cec7 /source/blender/blenkernel
parentef3c2554575c820ace5bce594ef92b841abe7758 (diff)
Change particle draw_size default and limits
Particle draw size can now no longer be less than 1px, and the default value has been changed to 4.
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/particle.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c
index 57e80c10a77..30ad808a650 100644
--- a/source/blender/blenkernel/intern/particle.c
+++ b/source/blender/blenkernel/intern/particle.c
@@ -3289,6 +3289,7 @@ static void default_particle_settings(ParticleSettings *part)
part->omat = 1;
part->use_modifier_stack = false;
+ part->draw_size = 4;
}