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:
authorPablo Dobarro <pablodp606@gmail.com>2019-10-15 19:33:56 +0300
committerPablo Dobarro <pablodp606@gmail.com>2019-10-18 17:24:50 +0300
commit082fb6603d591679635f3f9134d862650642b3f7 (patch)
tree6b2272130c3929d36dbcbb0bfb2a72b8acc842f4 /source/blender/editors/sculpt_paint
parent6183688c3560100dc1dcce3354cb622a135bc275 (diff)
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
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c3
1 files changed, 1 insertions, 2 deletions
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)