mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 21:59:37 +08:00
9 lines
332 B
Python
9 lines
332 B
Python
from cura.MachineAction import MachineAction
|
|
from UM.i18n import i18nCatalog
|
|
catalog = i18nCatalog("cura")
|
|
|
|
|
|
class UpgradeFirmwareMachineAction(MachineAction):
|
|
def __init__(self):
|
|
super().__init__("UpgradeFirmware", catalog.i18nc("@action", "Upgrade Firmware"))
|
|
self._qml_url = "UpgradeFirmwareMachineAction.qml" |