From 934db6a8201afe9b137ff41a3bf3f1da6b32ca02 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Mon, 10 Jan 2022 12:23:44 +0100 Subject: Fix T94409: GPencil smooth stroke thickness operator weird result The smooth was not working "smoothly" and any change in the factor produced a weird result. --- source/blender/editors/gpencil/gpencil_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c index 2a656ac3aad..e71a56894d0 100644 --- a/source/blender/editors/gpencil/gpencil_edit.c +++ b/source/blender/editors/gpencil/gpencil_edit.c @@ -3956,8 +3956,8 @@ static void gpencil_smooth_stroke(bContext *C, wmOperator *op) } if (smooth_thickness) { /* thickness need to repeat process several times */ - for (int r2 = 0; r2 < 20; r2++) { - BKE_gpencil_stroke_smooth_thickness(gps, i, factor); + for (int r2 = 0; r2 < repeat * 2; r2++) { + BKE_gpencil_stroke_smooth_thickness(gps, i, 1.0f - factor); } } if (smooth_uv) { -- cgit v1.2.3