From fa5e7858490faa02ea505ce3dc073da46a61b229 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 13 Jul 2023 15:54:28 +0500 Subject: [PATCH] Delete edit text from BIM Tool since it's already in Annotation Tool --- src/blenderbim/blenderbim/bim/module/model/workspace.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/model/workspace.py b/src/blenderbim/blenderbim/bim/module/model/workspace.py index 62287f2b87..6fefce75b1 100644 --- a/src/blenderbim/blenderbim/bim/module/model/workspace.py +++ b/src/blenderbim/blenderbim/bim/module/model/workspace.py @@ -255,9 +255,6 @@ class BimToolUI: row.label(text="", icon=f"EVENT_TAB") row.operator("bim.enable_editing_roof_path", text="Edit Roof Path") - elif DecoratorData.get_ifc_text_data(bpy.context.object): - add_layout_hotkey_operator(cls.layout, "Edit Text", "S_E", "") - row = cls.layout.row(align=True) row.label(text="", icon="EVENT_SHIFT") row.label(text="", icon="EVENT_O") @@ -496,10 +493,6 @@ class Hotkey(bpy.types.Operator, tool.Ifc.Operator): [o.select_set(False) for o in selected_usages.get("LAYER2", [])] bpy.ops.bim.extend_profile(join_type="T") - elif DecoratorData.get_ifc_text_data(bpy.context.object): - bpy.context.object.select_set(True) - bpy.ops.bim.edit_text_popup() - def hotkey_S_F(self): if not bpy.context.selected_objects: return