diff --git a/src/blenderbim/blenderbim/bim/module/profile/ui.py b/src/blenderbim/blenderbim/bim/module/profile/ui.py index 6515fdcc05..29a54ab587 100644 --- a/src/blenderbim/blenderbim/bim/module/profile/ui.py +++ b/src/blenderbim/blenderbim/bim/module/profile/ui.py @@ -91,6 +91,10 @@ class BIM_PT_profiles(Panel): row = self.layout.row() row.operator("bim.enable_editing_arbitrary_profile", text="Edit Arbitrary Profile", icon="GREASEPENCIL") + profile_entity = tool.Ifc.get().by_id(active_profile.ifc_definition_id) + users_of_profile = tool.Ifc.get().get_total_inverses(profile_entity) + self.layout.label(icon="INFO", text=f"Profile has {users_of_profile} inverse relationship(s) in project") + if self.props.active_profile_id: self.draw_editable_ui(context)