mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 06:58:56 +00:00
bim.contract / expand cost items - remove unused prop
This commit is contained in:
@@ -162,7 +162,6 @@ class ExpandCostItems(bpy.types.Operator, tool.Ifc.Operator):
|
|||||||
bl_label = "Expand Cost Items"
|
bl_label = "Expand Cost Items"
|
||||||
bl_options = {"REGISTER", "UNDO"}
|
bl_options = {"REGISTER", "UNDO"}
|
||||||
bl_description = "Expand all cost items"
|
bl_description = "Expand all cost items"
|
||||||
cost_items: bpy.props.StringProperty()
|
|
||||||
|
|
||||||
def _execute(self, context):
|
def _execute(self, context):
|
||||||
core.expand_cost_items(tool.Cost)
|
core.expand_cost_items(tool.Cost)
|
||||||
@@ -187,7 +186,6 @@ class ContractCostItems(bpy.types.Operator, tool.Ifc.Operator):
|
|||||||
bl_label = "Contract Cost Item"
|
bl_label = "Contract Cost Item"
|
||||||
bl_options = {"REGISTER", "UNDO"}
|
bl_options = {"REGISTER", "UNDO"}
|
||||||
bl_description = "Collapse cost item tree"
|
bl_description = "Collapse cost item tree"
|
||||||
cost_item: bpy.props.IntProperty()
|
|
||||||
|
|
||||||
def _execute(self, context):
|
def _execute(self, context):
|
||||||
core.contract_cost_items(tool.Cost)
|
core.contract_cost_items(tool.Cost)
|
||||||
|
|||||||
Reference in New Issue
Block a user