Fix error checking never setting state to "hasError"

CURA-9249

Fixes #12082
This commit is contained in:
Jaime van Kessel 2022-05-05 13:39:30 +02:00
parent eae5f4d57a
commit 509b7d65d5

View file

@ -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)