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:
authorGaia Clary <gaia.clary@machinimatrix.org>2013-03-13 18:12:17 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-03-13 18:12:17 +0400
commit020656ceba4c76218e8028cca294052cd68f5ac5 (patch)
tree23739002146cd4a979cf6190adf588e7d45bc830 /source/blender/editors/space_outliner/outliner_draw.c
parent604bdb7f45331bc16dac38ef8a3f34b5f6196b9d (diff)
Outliner: recursive select/deselect visibility and selectable unconditionally
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_draw.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index fb69757c04d..96f8753d993 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -145,9 +145,7 @@ static void restrictbutton_recursive_ebone(bContext *C, EditBone *ebone_parent,
ebone->flag |= flag;
}
else {
- if (arm->layer & ebone->layer) {
ebone->flag &= ~flag;
- }
}
}
}
@@ -162,9 +160,7 @@ static void restrictbutton_recursive_bone(bContext *C, bArmature *arm, Bone *bon
bone->flag |= flag;
}
else {
- if (arm->layer & bone->layer) {
bone->flag &= ~flag;
- }
}
restrictbutton_recursive_bone(C, arm, bone, flag, set_flag);
}