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@pandora.be>2009-10-14 17:21:54 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-10-14 17:21:54 +0400
commit1ce959b16e936a4e35808c04a95e1b143f46947d (patch)
tree694dfed56ec1cfb919228248d0535be6df7b5ca0 /source/blender/blenkernel/intern/key.c
parentc7c2e3de1ea805096d2047f4321d928ce427b00f (diff)
Shape Keys: disable the temporary shape display system, where
it would show you the last selected shape key until doing another operation. This is confusing, and the Pin button allows you to do the same kind of shape browsing.
Diffstat (limited to 'source/blender/blenkernel/intern/key.c')
-rw-r--r--source/blender/blenkernel/intern/key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/key.c b/source/blender/blenkernel/intern/key.c
index 39f9ed808fd..b6e4ffd6cc3 100644
--- a/source/blender/blenkernel/intern/key.c
+++ b/source/blender/blenkernel/intern/key.c
@@ -1368,7 +1368,7 @@ int do_ob_key(Scene *scene, Object *ob)
if(key==NULL)
return 0;
- if(ob->shapeflag & (OB_SHAPE_LOCK|OB_SHAPE_TEMPLOCK)) {
+ if(ob->shapeflag & OB_SHAPE_LOCK) {
KeyBlock *kb= BLI_findlink(&key->block, ob->shapenr-1);
if (G.f & G_DEBUG) printf("ob %s, key %s locked \n", ob->id.name+2, key->id.name+2);