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:
authorPhilipp Oeser <info@graphics-engineer.com>2020-10-21 19:49:21 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2020-10-21 21:37:18 +0300
commitd2f52dccd39ba6fb29c099e35f62559bb28548fa (patch)
treef3eec19ff1eecf6d807803631236e929062fd8ba /source/blender/editors/sculpt_paint/paint_mask.c
parent7ff6bfd1e0af67d2e583d12ce5aee5d2bf8ef96e (diff)
Fix T81929: Sculpt: Mask operators missing drawing update on meshes with
shapekeys/modifiers This was failing for all mask filters (sharpen, grow, invert, clear, shrink, contrast, smooth) and mask gestures (box, lasso). Also have to recalc shading, use SCULPT_tag_update_overlays for this. ref D8956 Maniphest Tasks: T81929 Differential Revision: https://developer.blender.org/D9302
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_mask.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_mask.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_mask.c b/source/blender/editors/sculpt_paint/paint_mask.c
index 305347b46a7..2193a31f19b 100644
--- a/source/blender/editors/sculpt_paint/paint_mask.c
+++ b/source/blender/editors/sculpt_paint/paint_mask.c
@@ -657,8 +657,7 @@ static void sculpt_gesture_apply(bContext *C, SculptGestureContext *sgcontext)
SCULPT_undo_push_end();
- ED_region_tag_redraw(sgcontext->vc.region);
- WM_event_add_notifier(C, NC_OBJECT | ND_DRAW, sgcontext->vc.obact);
+ SCULPT_tag_update_overlays(C);
}
/* Face Set Gesture Operation. */