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-31 16:41:14 +0300
committerPablo Dobarro <pablodp606@gmail.com>2019-10-31 16:41:14 +0300
commit26e454eec34c615cf8d5edec2fa59ac2312ec716 (patch)
treee127d04447b45ab3c1d0c49f874abdff4fa52f42
parent2de5b4864970c6f9d273862c2c3d7ed1585f8628 (diff)
parentbe2bdaf6aab672feb1961e2b6a2fd09f979bba2e (diff)
Merge branch 'blender-v2.81-release'
-rw-r--r--source/blender/draw/modes/sculpt_mode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/modes/sculpt_mode.c b/source/blender/draw/modes/sculpt_mode.c
index 9749619cffe..f32eb3b73ba 100644
--- a/source/blender/draw/modes/sculpt_mode.c
+++ b/source/blender/draw/modes/sculpt_mode.c
@@ -157,7 +157,7 @@ static void SCULPT_cache_populate(void *vedata, Object *ob)
if ((ob == draw_ctx->obact) &&
(BKE_sculptsession_use_pbvh_draw(ob, draw_ctx->v3d) ||
- ob->sculpt->deform_modifiers_active || ob->sculpt->shapekey_active)) {
+ !ob->sculpt->deform_modifiers_active || ob->sculpt->shapekey_active)) {
PBVH *pbvh = ob->sculpt->pbvh;
if (pbvh && pbvh_has_mask(pbvh)) {
DRW_shgroup_call_sculpt(stl->g_data->mask_overlay_grp, ob, false, true, false);