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>2018-08-16 01:17:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-16 01:17:26 +0300
commitd5c5a1518df00a9ed814abbb9e9d05b3feeb5e78 (patch)
tree2034e2f41c78dcc89364c3bec543cc0e537c5a18 /source/blender/editors/space_view3d/view3d_select.c
parent86615631563f2125bfbcff1a455c46e3b8644c57 (diff)
Correct flag use in recent object select change
Confusingly it worked, but was wrong.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_select.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c
index 1df3aecb8d8..b72017b2207 100644
--- a/source/blender/editors/space_view3d/view3d_select.c
+++ b/source/blender/editors/space_view3d/view3d_select.c
@@ -2415,7 +2415,7 @@ static int do_object_pose_box_select(bContext *C, ViewContext *vc, rcti *rect, c
if (SEL_OP_USE_OUTSIDE(sel_op)) {
for (int i = 0; i < BLI_array_len(bases); i++) {
Base *base = bases[i];
- if ((base->object->flag & OB_DONE) == 0) {
+ if ((base->object->id.tag & LIB_TAG_DOIT) == 0) {
const bool is_select = base->flag & BASE_SELECTED;
const bool is_inside = false; /* we know there are no hits. */
const int sel_op_result = ED_select_op_action_deselected(sel_op, is_select, is_inside);