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:
authorAntonio Vazquez <blendergit@gmail.com>2020-06-21 16:51:50 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-06-21 16:51:50 +0300
commit3fc5826f7c6c7606a6bc7e01970321c4e5b41751 (patch)
tree5bea184f2d703a1cad5453994eb172e7abf4f8cc /source/blender/editors/gpencil/drawgpencil.c
parent91117cad0f42914ceb01b07ee5c3948a97c7a059 (diff)
GPencil: Fix unreported missing material onion filter
This feature was removed by error during the refactor done in draw engine. Differential Revision: https://developer.blender.org/D8082
Diffstat (limited to 'source/blender/editors/gpencil/drawgpencil.c')
-rw-r--r--source/blender/editors/gpencil/drawgpencil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/drawgpencil.c b/source/blender/editors/gpencil/drawgpencil.c
index 6d41e9bddbe..3aff943a093 100644
--- a/source/blender/editors/gpencil/drawgpencil.c
+++ b/source/blender/editors/gpencil/drawgpencil.c
@@ -316,7 +316,7 @@ static void gp_draw_strokes(tGPDdraw *tgpw)
if ((gp_style == NULL) || (gp_style->flag & GP_MATERIAL_HIDE) ||
/* if onion and ghost flag do not draw*/
- (tgpw->onion && (gp_style->flag & GP_MATERIAL_ONIONSKIN))) {
+ (tgpw->onion && (gp_style->flag & GP_MATERIAL_HIDE_ONIONSKIN))) {
continue;
}