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:
authorCampbell Barton <ideasman42@gmail.com>2008-04-15 13:20:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-15 13:20:13 +0400
commit2147e74bc5974424f17abbd52d57f0f6a6d0861a (patch)
treeff64d518964ff612d07ec5276644d25caacf45d8 /source/blender/src/poseobject.c
parent6bb327badc63d65afe459e092059bf1d9c20b075 (diff)
made sculpt axis locking use local/global space (using the transform space)
also added some checks for sculpt mixing with other modes (was possible to mix sculpt+posemode)
Diffstat (limited to 'source/blender/src/poseobject.c')
-rw-r--r--source/blender/src/poseobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/poseobject.c b/source/blender/src/poseobject.c
index 0eb4d0bb9a1..4c97a8fdbdf 100644
--- a/source/blender/src/poseobject.c
+++ b/source/blender/src/poseobject.c
@@ -121,7 +121,7 @@ void enter_posemode(void)
}
if (G.obedit) exit_editmode(EM_FREEDATA|EM_WAITCURSOR);
- G.f &= ~(G_VERTEXPAINT | G_TEXTUREPAINT | G_WEIGHTPAINT);
+ G.f &= ~(G_VERTEXPAINT | G_TEXTUREPAINT | G_WEIGHTPAINT | G_SCULPTMODE);
}
void set_pose_keys (Object *ob)