diff --git a/src/blenderbim/blenderbim/tool/root.py b/src/blenderbim/blenderbim/tool/root.py index bac67eac83..4a35e2dc40 100644 --- a/src/blenderbim/blenderbim/tool/root.py +++ b/src/blenderbim/blenderbim/tool/root.py @@ -173,7 +173,7 @@ class Root(blenderbim.core.tool.Root): @classmethod def is_containable(cls, element: ifcopenshell.entity_instance) -> bool: - return element.is_a("IfcElement") or element.is_a("IfcGrid") + return element.is_a("IfcElement") or element.is_a("IfcAnnotation") or element.is_a("IfcGrid") @classmethod def is_element_a(cls, element: ifcopenshell.entity_instance, ifc_class: str) -> bool: