From 4f11ffcce74cfb0b87d69d017aa0c3371f78e320 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 31 May 2017 22:16:13 +1000 Subject: Fix outliner crash clicking on pose bones From 15317775c, we can't assume directdata is a Base. This matches logic from master. --- source/blender/editors/space_outliner/outliner_select.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'source/blender/editors/space_outliner/outliner_select.c') diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c index e61ded299d1..931af08c717 100644 --- a/source/blender/editors/space_outliner/outliner_select.c +++ b/source/blender/editors/space_outliner/outliner_select.c @@ -165,11 +165,7 @@ static eOLDrawState tree_element_set_active_object( } /* find associated base in current scene */ - if (te->directdata) { - base = te->directdata; - } else { - base = BKE_scene_layer_base_find(sl, ob); - } + base = BKE_scene_layer_base_find(sl, ob); if (base) { if (set == OL_SETSEL_EXTEND) { -- cgit v1.2.3