Added stubs for UMO upgrade selection

CURA-1385
This commit is contained in:
Jaime van Kessel 2016-07-04 10:28:37 +02:00
parent ea9e7f1755
commit 53087bd278
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,10 @@
from cura.MachineAction import MachineAction
from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")
class UMOUpgradeSelection(MachineAction):
def __init__(self):
super().__init__("UMOUpgradeSelection", catalog.i18nc("@action", "Select upgrades"))
self._qml_url = "UMOUpgradeSelectionMachineAction.qml"