From 528df000277c66b760a4df1b9599da81b7902e11 Mon Sep 17 00:00:00 2001 From: Gorgious56 Date: Fri, 28 Oct 2022 16:30:04 +0200 Subject: [PATCH] Organization and person now show a tooltip on hover --- src/blenderbim/blenderbim/bim/module/owner/prop.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/owner/prop.py b/src/blenderbim/blenderbim/bim/module/owner/prop.py index 239c69dbf6..b2466041ba 100644 --- a/src/blenderbim/blenderbim/bim/module/owner/prop.py +++ b/src/blenderbim/blenderbim/bim/module/owner/prop.py @@ -96,8 +96,14 @@ class BIMOwnerProperties(PropertyGroup): facsimile_numbers: CollectionProperty(type=StrProperty, name="Facsimile Numbers") electronic_mail_addresses: CollectionProperty(type=StrProperty, name="Emails") messaging_ids: CollectionProperty(type=StrProperty, name="IMs") - user_person: EnumProperty(items=get_user_person, name="Person") - user_organisation: EnumProperty(items=get_user_organisation, name="Organisation") + user_person: EnumProperty( + items=get_user_person, name="Person", description="This entity represents an individual human being." + ) + user_organisation: EnumProperty( + items=get_user_organisation, + name="Organisation", + description="A named and structured grouping with a corporate identity.", + ) active_user_id: IntProperty(name="Active User Id") active_actor_id: IntProperty(name="Active Actor Id") actor_attributes: CollectionProperty(name="Actor Attributes", type=Attribute) @@ -111,5 +117,7 @@ class BIMOwnerProperties(PropertyGroup): name="Actor Type", update=update_actor_type, ) - the_actor: EnumProperty(items=get_the_actor, name="Actor") + the_actor: EnumProperty( + items=get_the_actor, name="Actor", description="This entity represents an individual human being." + ) actor: EnumProperty(items=get_actor, name="Actor")