[Bf-blender-cvs] [016bbc8] master: Fix T42780: Object linking allows to have linked armatures in pose mode

Sergey Sharybin noreply at git.blender.org
Tue Dec 30 17:34:22 CET 2014


Commit: 016bbc879329390041909d524e3b41834b6853d3
Author: Sergey Sharybin
Date:   Tue Dec 30 21:33:15 2014 +0500
Branches: master
https://developer.blender.org/rB016bbc879329390041909d524e3b41834b6853d3

Fix T42780: Object linking allows to have linked armatures in pose mode

This isn't so bad for until one goes re-posing the armature and then uses undo.

It is the same issue as with edit mode which was solved back in the days.

===================================================================

M	source/blender/blenloader/intern/readfile.c

===================================================================

diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 0950eda..a6001e6 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4910,9 +4910,11 @@ static void direct_link_object(FileData *fd, Object *ob)
 	/* loading saved files with editmode enabled works, but for undo we like
 	 * to stay in object mode during undo presses so keep editmode disabled.
 	 *
-	 * Also when linking in a file don't allow editmode: [#34776] */
+	 * Also when linking in a file don't allow edit and pose modes.
+	 * See [#34776, #42780] for more information.
+	 */
 	if (fd->memfile || (ob->id.flag & (LIB_EXTERN | LIB_INDIRECT))) {
-		ob->mode &= ~(OB_MODE_EDIT | OB_MODE_PARTICLE_EDIT);
+		ob->mode &= ~(OB_MODE_EDIT | OB_MODE_PARTICLE_EDIT | OB_MODE_POSE);
 	}
 	
 	ob->adt = newdataadr(fd, ob->adt);




More information about the Bf-blender-cvs mailing list