From 9962a0c9053c6771b9960285055bcd21f0ed97e5 Mon Sep 17 00:00:00 2001 From: Ryan Schultz Date: Sun, 28 Apr 2024 18:57:42 -0500 Subject: [PATCH] small fix to previous commit. Solves https://github.com/IfcOpenShell/IfcOpenShell/commit/4b56b341243d6b0eed82e8533848b124e82e1344#commitcomment-141442796 --- src/blenderbim/blenderbim/bim/module/aggregate/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/module/aggregate/ui.py b/src/blenderbim/blenderbim/bim/module/aggregate/ui.py index b3d80817d7..e7b47eefc3 100644 --- a/src/blenderbim/blenderbim/bim/module/aggregate/ui.py +++ b/src/blenderbim/blenderbim/bim/module/aggregate/ui.py @@ -144,7 +144,7 @@ class BIM_PT_linked_aggregate(Panel): row.label(text="Not a Linked Aggregate") else: row.label(text=f"{Number_Linked_Aggregates} Linked Aggregates") - op = row.operator("bim.object_duplicate_move_linked_aggregate_macro", text="", icon="DUPLICATE") + op = row.operator("bim.object_duplicate_move_linked_aggregate", text="", icon="DUPLICATE") if type(Number_Linked_Aggregates) is int: if Number_Linked_Aggregates > 0: op = row.operator("bim.select_linked_aggregates", text="", icon="OUTLINER_DATA_POINTCLOUD")