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>2013-09-14 04:35:41 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-09-14 04:35:41 +0400
commit9f87d9963eb8c5320c07429c1590beff54658440 (patch)
tree04edccfe959e293e5fe3ae81b9646dc09c291708 /source/blender/blenkernel/intern/brush.c
parent157656593206647499d0dedb66b2a483a5900a3b (diff)
fix weird issue after last commit where grab brush would not work and
also warnings fix and description fix.
Diffstat (limited to 'source/blender/blenkernel/intern/brush.c')
-rw-r--r--source/blender/blenkernel/intern/brush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/brush.c b/source/blender/blenkernel/intern/brush.c
index 0c79b8860d9..7864216f39e 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -1051,5 +1051,5 @@ struct ImBuf *BKE_brush_gen_radial_control_imbuf(Brush *br, bool secondary)
bool BKE_sculpt_brush_frontface_only(struct Brush *br)
{
- return br->sculpt_tool != SCULPT_TOOL_CLAY_STRIPS;
+ return br->sculpt_tool == SCULPT_TOOL_CLAY_STRIPS;
}