mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Add 'plugins/LayerView/' from commit 'ffcf5c7885
'
git-subtree-dir: plugins/LayerView git-subtree-mainline:bda10b5ce5
git-subtree-split:ffcf5c7885
This commit is contained in:
commit
81aac4a1c1
3 changed files with 104 additions and 0 deletions
18
plugins/LayerView/__init__.py
Normal file
18
plugins/LayerView/__init__.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
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()}
|
Loading…
Add table
Add a link
Reference in a new issue