From 900761b37318bc0e1fd9ff752f7fc68d15e6cd83 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 27 Sep 2019 15:31:58 +0200 Subject: [PATCH] Fix documentation of quality node class It's a quality container, not a material container. This was a copy-paste mistake. Also added that this may be a global quality container, not always a per-extruder quality container. Found during testing & tooling. --- cura/Machines/QualityNode.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cura/Machines/QualityNode.py b/cura/Machines/QualityNode.py index 8bb2870ceb..66919d1c07 100644 --- a/cura/Machines/QualityNode.py +++ b/cura/Machines/QualityNode.py @@ -12,7 +12,9 @@ if TYPE_CHECKING: from cura.Machines.MaterialNode import MaterialNode from cura.Machines.MachineNode import MachineNode -## Represents a material profile in the container tree. +## Represents a quality profile in the container tree. +# +# This may either be a normal quality profile or a global quality profile. # # Its subcontainers are intent profiles. class QualityNode(ContainerNode):