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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2013-12-18 20:49:01 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-12-18 20:50:51 +0400
commitfd0825e7c4da6e134b3b7b1c20f58d19b0328f5f (patch)
tree026d1c873b0ea79377501efde026acfcaa129a18 /source/blender/makesdna
parentd9e8537d9be99bce3e30fd1d96aa1c813a835eb9 (diff)
Vertex/weight paint: remove "Use All Faces" option.
This is now always enabled, when you want to paint on a individual faces you can use face selection masking instead. Fixes T37855.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index a539f26116e..b0aa818d49a 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -880,7 +880,7 @@ typedef struct VPaint {
/* VPaint.flag */
enum {
// VP_COLINDEX = (1 << 0), /* only paint onto active material*/ /* deprecated since before 2.49 */
- VP_AREA = (1 << 1),
+ // VP_AREA = (1 << 1), /* deprecated since 2.70 */
VP_NORMALS = (1 << 3),
VP_SPRAY = (1 << 4),
// VP_MIRROR_X = (1 << 5), /* deprecated in 2.5x use (me->editflag & ME_EDIT_MIRROR_X) */