From a970b405138736abfca1bbd90a118bd2263783c6 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 25 Sep 2023 16:06:22 +0500 Subject: [PATCH] Descriptions for add_representation conversion methods --- .../blenderbim/bim/module/geometry/operator.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/geometry/operator.py b/src/blenderbim/blenderbim/bim/module/geometry/operator.py index 292936c230..dcf63827b9 100644 --- a/src/blenderbim/blenderbim/bim/module/geometry/operator.py +++ b/src/blenderbim/blenderbim/bim/module/geometry/operator.py @@ -121,8 +121,15 @@ class AddRepresentation(bpy.types.Operator, Operator): bl_options = {"REGISTER", "UNDO"} representation_conversion_method: bpy.props.EnumProperty( items=[ - ("OUTLINE", "Trace Outline", ""), - ("BOX", "Bounding Box", ""), + ("OUTLINE", "Trace Outline", "Traces outline by local XY axes, for Profile - by local XZ axes."), + ( + "BOX", + "Bounding Box", + "Creates a bounding box representation.\n" + "For Plan context - 2D bounding box by local XY axes,\n" + "for Profile - 2D bounding box by local XZ axes.\n" + "For other contexts - bounding box is 3d.", + ), ("PROJECT", "Full Representation", ""), ], name="Representation Conversion Method",