From c19fedf636ec3de503f5929432003702801ebcf3 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Thu, 8 Jun 2017 19:03:38 +0200 Subject: [PATCH] Fix some groups not showing in the viewport If the group was freshly created in 2.8 from a new object, this will prevent the object to be shown. --- source/blender/depsgraph/intern/depsgraph_query.cc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/source/blender/depsgraph/intern/depsgraph_query.cc b/source/blender/depsgraph/intern/depsgraph_query.cc index df5997af283..1c84a7bd5f5 100644 --- a/source/blender/depsgraph/intern/depsgraph_query.cc +++ b/source/blender/depsgraph/intern/depsgraph_query.cc @@ -145,13 +145,6 @@ static bool deg_objects_dupli_iterator_next(BLI_Iterator *iter) data->dupli_object_next = data->dupli_object_next->next; - /* Group duplis need to set ob matrices correct, for deform. so no_draw - * is part handled. - */ - if ((obd->transflag & OB_RENDER_DUPLI) == 0 && dob->no_draw) { - continue; - } - if (obd->type == OB_MBALL) { continue; }