From 0ea71b07953b0c9647c78d5a747210bf16f472bf Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 23 Oct 2024 16:29:00 +0500 Subject: [PATCH] Ifc.Operator - remove second refresh_ui_data Seems to be already covered by refresh_ui_data in IfcStore.execute_ifc_operator. --- src/bonsai/bonsai/tool/ifc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bonsai/bonsai/tool/ifc.py b/src/bonsai/bonsai/tool/ifc.py index ad7bc14ba8..cec12c6746 100644 --- a/src/bonsai/bonsai/tool/ifc.py +++ b/src/bonsai/bonsai/tool/ifc.py @@ -274,7 +274,6 @@ class Ifc(bonsai.core.tool.Ifc): @final def execute(self, context): IfcStore.execute_ifc_operator(self, context) - bonsai.bim.handler.refresh_ui_data() return {"FINISHED"} # NOTE: this class can't inherit from abc.ABC to use abc.abstractmethod