[Bf-blender-cvs] [05b54a99efb] temp-lanpr-staging: Cleanup: if brackets.

YimingWu noreply at git.blender.org
Sun Aug 11 11:23:07 CEST 2019


Commit: 05b54a99efbcc8b3e97523252e9801d7463502e7
Author: YimingWu
Date:   Sun Aug 11 17:20:16 2019 +0800
Branches: temp-lanpr-staging
https://developer.blender.org/rB05b54a99efbcc8b3e97523252e9801d7463502e7

Cleanup: if brackets.

===================================================================

M	source/blender/modifiers/intern/MOD_featureline.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_featureline.c b/source/blender/modifiers/intern/MOD_featureline.c
index a1b0f9141d8..173a22c5f51 100644
--- a/source/blender/modifiers/intern/MOD_featureline.c
+++ b/source/blender/modifiers/intern/MOD_featureline.c
@@ -96,8 +96,9 @@ static void foreachObjectLink(ModifierData *md, Object *ob, ObjectWalkFunc walk,
 static bool isDisabled(const struct Scene *scene, struct ModifierData *md, bool userRenderParams)
 {
   FeatureLineModifierData *flmd = (FeatureLineModifierData *)md;
-  if (!flmd->target)
+  if (!flmd->target){
     return true;
+  }
   return false;
 }



More information about the Bf-blender-cvs mailing list