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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-08-01 15:20:04 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-08-01 15:21:45 +0300
commitef8ab3b4c2aa4b709acf6b4c8263ceb6d6f515de (patch)
tree888d2a58dbbe69c94a090668189a65b0ae1a8113 /source/blender/modifiers
parent936d1cef6e6124a8f8f3ce50182afa2e1c947c6f (diff)
Fix issues after last 2.8 merge.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_bevel.c b/source/blender/modifiers/intern/MOD_bevel.c
index 1ada8b215c5..cf0753334db 100644
--- a/source/blender/modifiers/intern/MOD_bevel.c
+++ b/source/blender/modifiers/intern/MOD_bevel.c
@@ -233,7 +233,7 @@ static void bevel_mod_harden_normals(BevelModifierData *bmd, BMesh *bm, const fl
static void bevel_fix_normal_shading_continuity(BevelModifierData *bmd, BMesh *bm)
{
const bool vertex_only = (bmd->flags & MOD_BEVEL_VERT) != 0;
- if (bmd->value == 0 || bmd->clnordata.faceHash == NULL && vertex_only)
+ if (bmd->value == 0 || (bmd->clnordata.faceHash == NULL && vertex_only))
return;
BM_mesh_normals_update(bm);