From 5198cb1813909be33a1a5cd5677d3a3287321578 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 6 Jun 2020 18:59:35 +1000 Subject: Fix typo in recent bone selection refactor Thanks to @jbakker for pointing this out. --- source/blender/editors/include/ED_armature.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/include') 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) -- cgit v1.2.3