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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-06-29 11:11:17 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-06-29 11:11:17 +0300
commit2113dbb013f3ee37207c8ec3260d037c8a29f4c8 (patch)
tree8c7c111ac028efd3f285ebe99001ea452704eb82 /source/blender/editors/space_outliner/outliner_select.c
parent10c887762a01ec2f5326b5d51a47ac77744d5ec8 (diff)
parenta57a7975a1625d0876ff6ac13c14d5784236eb7e (diff)
Merge branch 'master' into blender2.8
Conflicts: source/blender/editors/space_outliner/outliner_select.c
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_select.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_select.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c
index 459af31b921..d9590d2af7f 100644
--- a/source/blender/editors/space_outliner/outliner_select.c
+++ b/source/blender/editors/space_outliner/outliner_select.c
@@ -659,7 +659,12 @@ static eOLDrawState tree_element_active_pose(
{
Object *ob = (Object *)tselem->id;
Base *base = BKE_scene_layer_base_find(sl, ob);
-
+
+ if (base == NULL) {
+ /* Armature not instantiated in current scene (e.g. inside an appended group...). */
+ return OL_DRAWSEL_NONE;
+ }
+
if (set != OL_SETSEL_NONE) {
if (scene->obedit)
ED_object_editmode_exit(C, EM_FREEDATA | EM_FREEUNDO | EM_WAITCURSOR | EM_DO_UNDO);