From de2329c352c1fe7a7495fd455f13c94820f7a4a2 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 11 Feb 2025 14:55:05 +0500 Subject: [PATCH] bim.override_paste_buffer - add description --- src/bonsai/bonsai/bim/module/geometry/operator.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bonsai/bonsai/bim/module/geometry/operator.py b/src/bonsai/bonsai/bim/module/geometry/operator.py index 3eecb06d95..a588cbe260 100644 --- a/src/bonsai/bonsai/bim/module/geometry/operator.py +++ b/src/bonsai/bonsai/bim/module/geometry/operator.py @@ -1849,6 +1849,12 @@ class OverrideJoin(bpy.types.Operator, tool.Ifc.Operator): class OverridePasteBuffer(bpy.types.Operator): bl_idname = "bim.override_paste_buffer" bl_label = "IFC Paste BIM Objects" + bl_description = ( + "Paste objects from the internal clipboard.\n\n" + "Note that pasted objects will be unliked from IFC, so some IFC data will be lost (psets, materials, etc).\n" + "To paste object and keep IFC data use 'IFC Duplicate Objects'.\n\n" + "If working in Bonsai, to prevent issues this operator must be always used instead of the default Blender 'Paste Objects'." + ) bl_options = {"REGISTER", "UNDO"} def execute(self, context):