[Bf-blender-cvs] [5198cb18139] master: Fix typo in recent bone selection refactor

Campbell Barton noreply at git.blender.org
Sat Jun 6 15:45:33 CEST 2020


Commit: 5198cb1813909be33a1a5cd5677d3a3287321578
Author: Campbell Barton
Date:   Sat Jun 6 18:59:35 2020 +1000
Branches: master
https://developer.blender.org/rB5198cb1813909be33a1a5cd5677d3a3287321578

Fix typo in recent bone selection refactor

Thanks to @jbakker for pointing this out.

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

M	source/blender/editors/include/ED_armature.h

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

diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h
index ac9eb415b23..5ffbe42d1d5 100644
--- a/source/blender/editors/include/ED_armature.h
+++ b/source/blender/editors/include/ED_armature.h
@@ -120,7 +120,7 @@ typedef struct EditBone {
   } temp;
 } EditBone;
 
-#define BONESEL_ROOT (2 << 29u)
+#define BONESEL_ROOT (1 << 29u)
 #define BONESEL_TIP (1 << 30u)
 #define BONESEL_BONE (1 << 31u)
 #define BONESEL_ANY (BONESEL_TIP | BONESEL_ROOT | BONESEL_BONE)



More information about the Bf-blender-cvs mailing list