Merge pull request #10700 from Ultimaker/CURA-8656_error_checking_for_disabled_settings

Error checking for disabled settings
This commit is contained in:
Remco Burema 2021-10-29 13:39:59 +02:00 committed by GitHub
commit a82ffa45a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -123,6 +123,9 @@ class StartSliceJob(Job):
Job.yieldThread()
for changed_setting_key in changed_setting_keys:
if not stack.getProperty(changed_setting_key, "enabled"):
continue
validation_state = stack.getProperty(changed_setting_key, "validationState")
if validation_state is None: