mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 17:31:45 +00:00
Fix regression where you couldn't move spatial elements from the new aggregate move override.
This commit is contained in:
@@ -2950,7 +2950,7 @@ class OverrideMoveAggregate(bpy.types.Operator):
|
||||
obj.select_set(False)
|
||||
continue
|
||||
element = tool.Ifc.get_entity(obj)
|
||||
if not element or props.in_aggregate_mode:
|
||||
if not element or not element.is_a("IfcElement") or props.in_aggregate_mode:
|
||||
continue
|
||||
parts = ifcopenshell.util.element.get_parts(element)
|
||||
if parts:
|
||||
|
||||
Reference in New Issue
Block a user