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:
authorGhostkeeper <rubend@tutanota.com>2020-08-18 11:38:50 +0300
committerGhostkeeper <rubend@tutanota.com>2020-08-18 11:38:50 +0300
commitdea53b9c02c4e7fb9bf560e8cea3144f63a7badb (patch)
treedad46a9779ae28c7b09f9deb12dff777d84b2259 /resources
parent6d90c85fb2ad14ae0a90c66bdb7ec0ae884364d0 (diff)
Revert "Use extruderList rather than deprecated extruders property"
This reverts commit 458acb356f11f50c3327b5af0be8531fb761548f. The change was wrong. The code refers to PrinterOutputModel.extruders which is not deprecated, not to GlobalStack.extruders (which is deprecated). Fixes #8204.
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/PrintMonitor.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml
index 9274bf80ad..19c2562874 100644
--- a/resources/qml/PrintMonitor.qml
+++ b/resources/qml/PrintMonitor.qml
@@ -77,7 +77,7 @@ Item
Repeater
{
id: extrudersRepeater
- model: activePrinter != null ? activePrinter.extruderList : null
+ model: activePrinter != null ? activePrinter.extruders : null
ExtruderBox
{