mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 06:27:26 -06:00
Convert doxygen to rst for UltimakerMachineActions, USBPrinting
This commit is contained in:
parent
d96359f208
commit
de82406782
4 changed files with 37 additions and 21 deletions
|
@ -14,9 +14,12 @@ from UM.Logger import Logger
|
|||
catalog = i18nCatalog("cura")
|
||||
|
||||
|
||||
## A simple action to handle manual bed leveling procedure for printers that don't have it on the firmware.
|
||||
# This is currently only used by the Ultimaker Original+
|
||||
class BedLevelMachineAction(MachineAction):
|
||||
"""A simple action to handle manual bed leveling procedure for printers that don't have it on the firmware.
|
||||
|
||||
This is currently only used by the Ultimaker Original+
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
super().__init__("BedLevel", catalog.i18nc("@action", "Level build plate"))
|
||||
self._qml_url = "BedLevelMachineAction.qml"
|
||||
|
|
|
@ -11,9 +11,12 @@ catalog = i18nCatalog("cura")
|
|||
|
||||
from cura.Settings.CuraStackBuilder import CuraStackBuilder
|
||||
|
||||
## The Ultimaker Original can have a few revisions & upgrades. This action helps with selecting them, so they are added
|
||||
# as a variant.
|
||||
|
||||
class UMOUpgradeSelection(MachineAction):
|
||||
"""The Ultimaker Original can have a few revisions & upgrades.
|
||||
This action helps with selecting them, so they are added as a variant.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
super().__init__("UMOUpgradeSelection", catalog.i18nc("@action", "Select upgrades"))
|
||||
self._qml_url = "UMOUpgradeSelectionMachineAction.qml"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue