Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2022-05-05 14:39:30 +0300
committerJaime van Kessel <nallath@gmail.com>2022-05-05 14:39:30 +0300
commit509b7d65d5dd736b0b30e1a21f4d3592b8b649f6 (patch)
treea03cf840ca977df63f17cb20b9882cac481d2d00
parenteae5f4d57a1bff2b0c3135b5b76265f823891c83 (diff)
Fix error checking never setting state to "hasError"
CURA-9249 Fixes #12082
-rw-r--r--cura/Machines/MachineErrorChecker.py2
1 files changed, 1 insertions, 1 deletions
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)