From d93c5e667bd20dcc6ae0dbb2d79b8d0b38cd10cc Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 15 May 2017 14:02:07 +0200 Subject: [PATCH] Changed final spot where we still used findContainer when looking for container with specific type --- cura/Settings/ExtruderManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index 19d3ab4f5b..dc602a4597 100755 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.py @@ -85,7 +85,7 @@ class ExtruderManager(QObject): for position in self._extruder_trains[Application.getInstance().getGlobalContainerStack().getId()]: extruder = self._extruder_trains[Application.getInstance().getGlobalContainerStack().getId()][position] if extruder.getId() == id: - return extruder.findContainer(type = "quality_changes").getId() + return extruder.qualityChanges.getId() ## The instance of the singleton pattern. #