Revision: 15833
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=15833
Author:   aligorith
Date:     2008-07-28 06:08:46 +0200 (Mon, 28 Jul 2008)

Log Message:
-----------
Bugfix: 

Bone-locking should only be set if the bone (and not its parent/children) are 
selected. Transposition error from the patch (I had to manually apply as there 
were some oddities about the patch file).

Modified Paths:
--------------
    trunk/blender/source/blender/src/editarmature.c

Modified: trunk/blender/source/blender/src/editarmature.c
===================================================================
--- trunk/blender/source/blender/src/editarmature.c     2008-07-28 03:16:10 UTC 
(rev 15832)
+++ trunk/blender/source/blender/src/editarmature.c     2008-07-28 04:08:46 UTC 
(rev 15833)
@@ -2717,7 +2717,7 @@
        
        for (ebone = G.edbo.first; ebone; ebone=ebone->next) {
                if (arm->layer & ebone->layer) {
-                       if (ebone->flag & 
(BONE_SELECTED|BONE_TIPSEL|BONE_ROOTSEL)) {
+                       if (ebone->flag & BONE_SELECTED) {
                                if (lock)
                                        ebone->flag |= BONE_EDITMODE_LOCKED;
                                else    


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to