From bcda3d8e93b1486ed8e4a844574bc53a07e4ec23 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Sun, 29 Aug 2021 15:26:45 +1000 Subject: [PATCH] Minor fix --- src/blenderbim/blenderbim/bim/module/cost/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/cost/ui.py b/src/blenderbim/blenderbim/bim/module/cost/ui.py index c6512fdbbc..5eecac9d49 100644 --- a/src/blenderbim/blenderbim/bim/module/cost/ui.py +++ b/src/blenderbim/blenderbim/bim/module/cost/ui.py @@ -211,10 +211,10 @@ class BIM_PT_cost_schedules(Panel): def draw_cost_value_operator_ui(self, layout, cost_value_id, parent_id): if self.props.active_cost_value_id and self.props.active_cost_value_id == cost_value_id: if self.props.cost_value_editing_type == "ATTRIBUTES": - op = layout.operator("bim.edit_cost_item_value", text="", icon="CHECKMARK") + op = layout.operator("bim.edit_cost_value", text="", icon="CHECKMARK") op.cost_value = cost_value_id elif self.props.cost_value_editing_type == "FORMULA": - op = layout.operator("bim.edit_cost_item_value_formula", text="", icon="CHECKMARK") + op = layout.operator("bim.edit_cost_value_formula", text="", icon="CHECKMARK") op.cost_value = cost_value_id layout.operator("bim.disable_editing_cost_item_value", text="", icon="CANCEL") elif self.props.active_cost_value_id: