fix bug removing cost schedule columns

it was using _execute though it's not an ifc operator
This commit is contained in:
Andrej730
2024-05-23 15:33:49 +05:00
parent b4f0a346c1
commit e4aa97091e
@@ -544,7 +544,7 @@ class RemoveCostColumn(bpy.types.Operator):
bl_options = {"REGISTER", "UNDO"}
name: bpy.props.StringProperty()
def _execute(self, context):
def execute(self, context):
core.remove_cost_column(tool.Cost, self.name)
return {"FINISHED"}