From bf75a1964047ceb8f6be639875109c2e968f2ecd Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 16 Mar 2026 15:24:42 +0500 Subject: [PATCH] bim.image_scaling_tool - break description to multiple lines for readibility --- src/bonsai/bonsai/bim/module/project/workspace.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/project/workspace.py b/src/bonsai/bonsai/bim/module/project/workspace.py index 850fdc6531..f087d47fa1 100644 --- a/src/bonsai/bonsai/bim/module/project/workspace.py +++ b/src/bonsai/bonsai/bim/module/project/workspace.py @@ -85,7 +85,12 @@ class ExploreTool(bpy.types.WorkSpaceTool): row = layout.row(align=True) op = row.operator("bim.explore_hotkey", text="Image Scaling Tool", icon="IMAGE_PLANE") op.hotkey = "S_S" - op.description = "Scale Image Annotation. Allows to scale an IfcReferenceImage. Select image, select tool. Check lower left corner instructions to select two points and provide real distance between them" + op.description = ( + "Scale Image Annotation.\n\n" + "Allows to scale an IfcReferenceImage.\n\n" + "Select image, select tool. " + "Check lower left corner instructions to select two points and provide real distance between them" + ) row = layout.row(align=True) row.operator("bim.generate_uv_map", icon="UV")