From 291bffca9563c2355988db194855896d7212ea63 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 23 May 2024 16:01:47 +0500 Subject: [PATCH] add tooltip for cost schedule columns example - https://i.imgur.com/Uh8D7Vg.png --- src/blenderbim/blenderbim/bim/module/cost/prop.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/module/cost/prop.py b/src/blenderbim/blenderbim/bim/module/cost/prop.py index f0ea31fd8c..370b58d9b7 100644 --- a/src/blenderbim/blenderbim/bim/module/cost/prop.py +++ b/src/blenderbim/blenderbim/bim/module/cost/prop.py @@ -210,7 +210,11 @@ class BIMCostProperties(PropertyGroup): cost_value_attributes: CollectionProperty(name="Cost Value Attributes", type=Attribute) cost_value_formula: StringProperty(name="Cost Value Formula") cost_column: StringProperty(name="Cost Column") - should_show_column_ui: BoolProperty(name="Should Show Column UI", default=False) + should_show_column_ui: BoolProperty( + name="Should Show Column UI", + description="Display UI for adding cost schedule columns, column names represent a category for cost item values", + default=False, + ) should_show_currency_ui: BoolProperty(name="Should Show Currency UI", default=False) columns: CollectionProperty(name="Columns", type=StrProperty) active_column_index: IntProperty(name="Active Column Index")