Browse Source

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.
Ghostkeeper 5 years ago
parent
commit
900761b373
1 changed files with 3 additions and 1 deletions
  1. 3 1
      cura/Machines/QualityNode.py

+ 3 - 1
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):