From a0d27c3f1cfd0f047996022138e7f8636773b935 Mon Sep 17 00:00:00 2001 From: Kurt Battisti Date: Sat, 11 May 2024 11:04:35 +0200 Subject: [PATCH] Make Whole status UI message clearer (#4658) Replace UI text "No Aggregate" with "No Whole relation defined" to avoid misinterpretation when instance is a whole with parts. --- 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 e7b47eefc3..f585787162 100644 --- a/src/blenderbim/blenderbim/bim/module/aggregate/ui.py +++ b/src/blenderbim/blenderbim/bim/module/aggregate/ui.py @@ -73,7 +73,7 @@ class BIM_PT_aggregate(Panel): row.operator("bim.add_aggregate", icon="ADD", text="") op = row.operator("bim.aggregate_unassign_object", icon="X", text="") else: - row.label(text="No Aggregate", icon="TRIA_UP") + row.label(text="No Whole relation defined", icon="TRIA_UP") row.operator("bim.enable_editing_aggregate", icon="GREASEPENCIL", text="") row.operator("bim.add_aggregate", icon="ADD", text="")