mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06: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.
14 lines
366 B
Python
14 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()
|
|
]}
|