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:
authorAntony Riakiotakis <kalast@gmail.com>2014-06-27 02:55:30 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-06-27 02:55:30 +0400
commitbd777ffd3b38d6a940164e55bb7493bfbad39837 (patch)
tree74b0f990acfd5395f83ff15c71278dd17fb8f25c /source/blender/editors/sculpt_paint/sculpt.c
parentdbc04c594b941247be566f77754f9148235197ae (diff)
Follow up to previous commit, do not calculate normal now with front
facing.
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 735238ac89b..12223effcf5 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -1234,8 +1234,7 @@ static int brush_needs_sculpt_normal(const Brush *brush)
return ((ELEM(brush->sculpt_tool,
SCULPT_TOOL_GRAB,
SCULPT_TOOL_SNAKE_HOOK) &&
- ((brush->normal_weight > 0) ||
- (brush->flag & BRUSH_FRONTFACE))) ||
+ (brush->normal_weight > 0)) ||
ELEM7(brush->sculpt_tool,
SCULPT_TOOL_BLOB,