mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-08 16:59:00 +08:00

Conflicts: plugins/USBPrinting/PrinterConnection.py plugins/USBPrinting/USBPrinterManager.py plugins/Views/LayerView/LayerView.py
19 lines
315 B
Python
19 lines
315 B
Python
from . import LayerView
|
|
|
|
|
|
def getMetaData():
|
|
return {
|
|
'type': 'view',
|
|
'plugin': {
|
|
"name": "Layer View"
|
|
},
|
|
'view': {
|
|
'name': 'Layers',
|
|
'view_panel': 'LayerView.qml'
|
|
}
|
|
}
|
|
|
|
|
|
def register(app):
|
|
return {"view":LayerView.LayerView()}
|