From 509b7d65d5dd736b0b30e1a21f4d3592b8b649f6 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 5 May 2022 13:39:30 +0200 Subject: Fix error checking never setting state to "hasError" CURA-9249 Fixes #12082 --- cura/Machines/MachineErrorChecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Machines/MachineErrorChecker.py b/cura/Machines/MachineErrorChecker.py index 2bc8a6bc58..2cb333d157 100644 --- a/cura/Machines/MachineErrorChecker.py +++ b/cura/Machines/MachineErrorChecker.py @@ -194,7 +194,7 @@ class MachineErrorChecker(QObject): keys_to_recheck = {setting_key for stack, setting_key in self._stacks_and_keys_to_check} keys_to_recheck.add(key) self._setResult(True, keys_to_recheck = keys_to_recheck) - continue + return # Schedule the check for the next key self._application.callLater(self._checkStack) -- cgit v1.2.3