[Bf-blender-cvs] [cdc1c60f5ba] blender-v3.4-release: Fix T102466: push/pull doesn't work if applied to many vertices

Germano Cavalcante noreply at git.blender.org
Thu Nov 24 21:30:38 CET 2022


Commit: cdc1c60f5bacea96d679384ecf46d93eb74d3a93
Author: Germano Cavalcante
Date:   Thu Nov 24 17:29:06 2022 -0300
Branches: blender-v3.4-release
https://developer.blender.org/rBcdc1c60f5bacea96d679384ecf46d93eb74d3a93

Fix T102466: push/pull doesn't work if applied to many vertices

The assignment of member`distance` was missing in rB2d4ec9049744.

===================================================================

M	source/blender/editors/transform/transform_mode_push_pull.c

===================================================================

diff --git a/source/blender/editors/transform/transform_mode_push_pull.c b/source/blender/editors/transform/transform_mode_push_pull.c
index 87309b45231..b7806b3519e 100644
--- a/source/blender/editors/transform/transform_mode_push_pull.c
+++ b/source/blender/editors/transform/transform_mode_push_pull.c
@@ -152,6 +152,8 @@ static void applyPushPull(TransInfo *t, const int UNUSED(mval[2]))
       struct TransDataArgs_PushPull data = {
           .t = t,
           .tc = tc,
+
+          .distance = distance,
           .axis_global = {UNPACK3(axis_global)},
           .is_lock_constraint = is_lock_constraint,
           .is_data_space = is_data_space,



More information about the Bf-blender-cvs mailing list