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:
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_convert.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_convert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_convert.c b/source/blender/editors/gpencil/gpencil_convert.c
index 3b62b44c7cd..2d9f49fa1ed 100644
--- a/source/blender/editors/gpencil/gpencil_convert.c
+++ b/source/blender/editors/gpencil/gpencil_convert.c
@@ -1249,7 +1249,7 @@ static void gpencil_stroke_norm_curve_weights(Curve *cu, const float minmax_weig
{
const float delta = minmax_weights[0];
- /* when delta == minmax_weights[0] == minmax_weights[1], we get div by zero [#35686] */
+ /* when delta == minmax_weights[0] == minmax_weights[1], we get div by zero T35686. */
float fac;
if (IS_EQF(delta, minmax_weights[1])) {
fac = 1.0f;