mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 21:59:37 +08:00

Instead of choosing the Olsson block with this wizard, choose it by choosing the correct definition to start with. Contributes to issue CURA-6775.
15 lines
366 B
Python
15 lines
366 B
Python
# Copyright (c) 2019 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from . import BedLevelMachineAction
|
|
from . import UMOUpgradeSelection
|
|
|
|
def getMetaData():
|
|
return {}
|
|
|
|
def register(app):
|
|
return { "machine_action": [
|
|
BedLevelMachineAction.BedLevelMachineAction(),
|
|
UMOUpgradeSelection.UMOUpgradeSelection()
|
|
]}
|