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.
This commit is contained in:
Ghostkeeper 2019-09-27 15:31:58 +02:00
parent 4e8929a072
commit 900761b373
No known key found for this signature in database
GPG Key ID: 86BEF881AE2CF276

View File

@ -12,7 +12,9 @@ if TYPE_CHECKING:
from cura.Machines.MaterialNode import MaterialNode from cura.Machines.MaterialNode import MaterialNode
from cura.Machines.MachineNode import MachineNode 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. # Its subcontainers are intent profiles.
class QualityNode(ContainerNode): class QualityNode(ContainerNode):