From 9f0a4ba064a841fa1d31b76532befa40d510ae2e Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 15 Aug 2023 14:41:58 +0500 Subject: [PATCH] Calculate/guess quantity descriptions to avoid confusion --- src/blenderbim/blenderbim/bim/module/pset/operator.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/blenderbim/blenderbim/bim/module/pset/operator.py b/src/blenderbim/blenderbim/bim/module/pset/operator.py index c796a39ecd..293d46b4f9 100644 --- a/src/blenderbim/blenderbim/bim/module/pset/operator.py +++ b/src/blenderbim/blenderbim/bim/module/pset/operator.py @@ -398,6 +398,7 @@ class CalculateQuantity(bpy.types.Operator): bl_idname = "bim.calculate_quantity" bl_label = "Calculate Quantity" bl_options = {"REGISTER", "UNDO"} + bl_description = "Calculates the quantity with a defined formula for this exact entity and quantity" prop: bpy.props.StringProperty() def execute(self, context): @@ -424,6 +425,10 @@ class GuessQuantity(bpy.types.Operator): bl_idname = "bim.guess_quantity" bl_label = "Guess Quantity" bl_options = {"REGISTER", "UNDO"} + bl_description = ( + "Calculate the quantity by guessing the formula from the quantity name. " + "Less reliable than Calculate Quantity" + ) prop: bpy.props.StringProperty() def execute(self, context):