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>2020-06-06 11:59:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-06 16:32:46 +0300
commit5198cb1813909be33a1a5cd5677d3a3287321578 (patch)
tree5576c266389b1f78bdf41cf3abd04356d6979876 /source/blender/editors/include
parent6c114a139bacc4e8f22253b8422336f30a029899 (diff)
Fix typo in recent bone selection refactor
Thanks to @jbakker for pointing this out.
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_armature.h2
1 files changed, 1 insertions, 1 deletions
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)