mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
10 lines
No EOL
331 B
Python
10 lines
No EOL
331 B
Python
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" |