From e18346d4eaaf934405bcaee859c97c16291ce02b Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 20 Jun 2025 14:15:57 +0500 Subject: [PATCH] bim.remove_application - remove unneccessery info from the tooltip Since now user can edit applications and see that info there. --- src/bonsai/bonsai/bim/module/owner/operator.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/bonsai/bonsai/bim/module/owner/operator.py b/src/bonsai/bonsai/bim/module/owner/operator.py index 2e77180936..4d3434f00a 100644 --- a/src/bonsai/bonsai/bim/module/owner/operator.py +++ b/src/bonsai/bonsai/bim/module/owner/operator.py @@ -493,11 +493,7 @@ class RemoveApplication(bpy.types.Operator, tool.Ifc.Operator): ifc_file = tool.Ifc.get() application = ifc_file.by_id(application_id) - application_info = "Additional application info:" - application_info += f"\n- Developer: {application.ApplicationDeveloper.Name}" - application_info += f"\n- Version: {application.Version}" - application_info += f"\n- Identifier: {application.ApplicationIdentifier}" - application_info += f"\n- Number of inverses: {ifc_file.get_total_inverses(application)}" + application_info = f"Number of inverses: {ifc_file.get_total_inverses(application)}" application_info += f"\n(try to remove application to see the full list of inverses in system console)" description += f"\n\n{application_info}"