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:
authorChris ter Beke <ctbeke@gmail.com>2017-10-26 10:23:27 +0300
committerChris ter Beke <ctbeke@gmail.com>2017-10-26 10:23:27 +0300
commitb95ba24530b8ec98a8c524c46d9d644499e5cc74 (patch)
tree06994bd4746dd8ff111b901a7a6b441e5e1d3436 /cura/CuraApplication.py
parentc679f4aa6b121a660eb08de1e24f24280ba5619a (diff)
Remove some changes, debugging - CURA-4451
WIP - CURA-4451 correctly show not supported when any of the extruders has a not supported profile - CURA-4451 Clean up and add comments - CURA-4451
Diffstat (limited to 'cura/CuraApplication.py')
-rwxr-xr-xcura/CuraApplication.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index 1680e7c6a6..2d1c35aca7 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -270,8 +270,9 @@ class CuraApplication(QtApplication):
empty_quality_container = copy.deepcopy(empty_container)
empty_quality_container._id = "empty_quality"
empty_quality_container.setName("Not Supported")
- empty_quality_container.addMetaDataEntry("quality_type", "normal")
+ empty_quality_container.addMetaDataEntry("quality_type", "not_supported")
empty_quality_container.addMetaDataEntry("type", "quality")
+ empty_quality_container.addMetaDataEntry("supported", False)
ContainerRegistry.getInstance().addContainer(empty_quality_container)
empty_quality_changes_container = copy.deepcopy(empty_container)
empty_quality_changes_container._id = "empty_quality_changes"