diff --git a/source/blender/editors/space_outliner/outliner_draw.cc b/source/blender/editors/space_outliner/outliner_draw.cc index 2f8568b21c1..20c77f25b8f 100644 --- a/source/blender/editors/space_outliner/outliner_draw.cc +++ b/source/blender/editors/space_outliner/outliner_draw.cc @@ -3326,6 +3326,11 @@ static bool element_should_draw_faded(const TreeViewContext *tvc, tree_element_cast(te)->node(); return !node.is_visible(); } + default: { + if (te->parent) { + return element_should_draw_faded(tvc, te->parent, te->parent->store_elem); + } + } } if (te->flag & TE_CHILD_NOT_IN_COLLECTION) {