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:
authorSebastian Parborg <darkdefende@gmail.com>2020-07-15 13:28:32 +0300
committerSebastian Parborg <darkdefende@gmail.com>2020-07-15 13:29:45 +0300
commit50c64487815a8533761728bc41a57b83f0e06094 (patch)
treecfcdbb24c9d4bbcd4bbe4ac4c6b09c1f0b488478 /source/blender/editors/transform/transform_convert_particle.c
parente8b26a05018bd56c48453a1b868021c054244765 (diff)
Fix T78909: Curve-edit proportional connected-only broken
Now it calculates the actual distance when traveling along the curve. I addition to this, it also now supports cyclic curves. Reviewed By: Campbell Differential Revision: http://developer.blender.org/D8293
Diffstat (limited to 'source/blender/editors/transform/transform_convert_particle.c')
-rw-r--r--source/blender/editors/transform/transform_convert_particle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_convert_particle.c b/source/blender/editors/transform/transform_convert_particle.c
index 3fa722d14cf..fbe9c07ebe9 100644
--- a/source/blender/editors/transform/transform_convert_particle.c
+++ b/source/blender/editors/transform/transform_convert_particle.c
@@ -183,7 +183,7 @@ void createTransParticleVerts(bContext *C, TransInfo *t)
tail++;
}
if (is_prop_edit && head != tail) {
- calc_distanceCurveVerts(head, tail - 1);
+ calc_distanceCurveVerts(head, tail - 1, false);
}
}
}