Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2018-10-29 13:28:08 +0300
committerJaime van Kessel <nallath@gmail.com>2018-10-29 13:28:08 +0300
commit3248a05819fccd54f71f6765ff5846b15c22b181 (patch)
tree1685c33e38500a02aaf9131d77ffce3059218a38 /plugins/MonitorStage
parent90e8a05aab63d5d16a2431571f6e9b6791ccd192 (diff)
Add PreviewStagePlugin stubs
Since we are going to move all the views into a seperate stage, we need to add another stage to do that. CURA-5829
Diffstat (limited to 'plugins/MonitorStage')
-rw-r--r--plugins/MonitorStage/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/MonitorStage/__init__.py b/plugins/MonitorStage/__init__.py
index bdaf53a36c..0468e6319b 100644
--- a/plugins/MonitorStage/__init__.py
+++ b/plugins/MonitorStage/__init__.py
@@ -7,14 +7,16 @@ from . import MonitorStage
from UM.i18n import i18nCatalog
i18n_catalog = i18nCatalog("cura")
+
def getMetaData():
return {
"stage": {
"name": i18n_catalog.i18nc("@item:inmenu", "Monitor"),
- "weight": 1
+ "weight": 2
}
}
+
def register(app):
return {
"stage": MonitorStage.MonitorStage()