Skip to content

Commit

Permalink
Make Whole status UI message clearer (#4658)
Browse files Browse the repository at this point in the history
Replace UI text "No Aggregate" with "No Whole relation defined" to avoid misinterpretation when instance is a whole with parts.
  • Loading branch information
kurb70 committed May 11, 2024
1 parent 811a908 commit a0d27c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blenderbim/blenderbim/bim/module/aggregate/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def draw(self, context):
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="")

Expand Down

0 comments on commit a0d27c3

Please sign in to comment.