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

git-subtree-dir: plugins/LayerView git-subtree-mainline: bda10b5ce5b6933c3952d4e3999b886c5dc31443 git-subtree-split: ffcf5c7885b5ebf9d99103b68f03fb86d5610d27
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()}
|