Remove unnecessary Catalog and SettingPropertyProvider

This commit is contained in:
Arjen Hiemstra 2017-04-26 16:18:14 +02:00
parent b4f27f0af7
commit 80bf6988ca

View file

@ -69,10 +69,11 @@ Item
}
}
Item { height: UM.Theme.getSize("default_margin").height; width: 1; visible: machineExtruderCount.properties.value > 1 }
Item { height: UM.Theme.getSize("default_margin").height; width: 1; visible: extruders.count > 0 }
Repeater
{
id: extruders
model: Cura.ExtrudersModel { id: extrudersModel }
ExtruderButton { extruder: model }
}
@ -156,15 +157,4 @@ Item
visible: toolHint.text != "";
}
UM.SettingPropertyProvider
{
id: machineExtruderCount
containerStackId: Cura.MachineManager.activeMachineId
key: "machine_extruder_count"
watchedProperties: [ "value" ]
}
UM.I18nCatalog { id: catalog; name: "cura" }
}