[Bf-blender-cvs] [082fb6603d5] blender-v2.81-release: Fix T70839: Sculpt brushes stop affecting after using move, rotate or scale tools

Pablo Dobarro noreply at git.blender.org
Fri Oct 18 16:22:22 CEST 2019


Commit: 082fb6603d591679635f3f9134d862650642b3f7
Author: Pablo Dobarro
Date:   Tue Oct 15 18:33:56 2019 +0200
Branches: blender-v2.81-release
https://developer.blender.org/rB082fb6603d591679635f3f9134d862650642b3f7

Fix T70839: Sculpt brushes stop affecting after using move, rotate or scale tools

Reviewed By: jbakker

Maniphest Tasks: T70839

Differential Revision: https://developer.blender.org/D6071

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

M	source/blender/editors/sculpt_paint/sculpt.c

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

diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index d2d424745da..025bb707a81 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -9511,8 +9511,7 @@ static void sculpt_transform_task_cb(void *__restrict userdata,
   }
   BKE_pbvh_vertex_iter_end;
 
-  BKE_pbvh_node_mark_redraw(node);
-  BKE_pbvh_node_mark_normals_update(node);
+  BKE_pbvh_node_mark_update(node);
 }
 
 void ED_sculpt_update_modal_transform(struct bContext *C)



More information about the Bf-blender-cvs mailing list