COW Fix: Border selecting bones on rigs broke

Annoyingly, this was working as recently as yesterday...
This commit is contained in:
Joshua Leung 2018-05-24 18:17:45 +02:00
parent 12b261be41
commit f7c75e8bd7
Notes: blender-bot 2023-02-14 06:23:08 +01:00
Referenced by issue #55185, Border select non-responsive in pose mode
1 changed files with 2 additions and 0 deletions

View File

@ -2173,6 +2173,8 @@ static int do_object_pose_box_select(bContext *C, ViewContext *vc, rcti *rect, b
DEG_id_tag_update(&vc->obact->id, OB_RECALC_DATA);
}
/* copy on write tag is needed (for the armature), or else no refresh happens */
DEG_id_tag_update(&arm->id, DEG_TAG_COPY_ON_WRITE);
}
}
}