mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 22:35:03 -06:00
Merge pull request #10700 from Ultimaker/CURA-8656_error_checking_for_disabled_settings
Error checking for disabled settings
This commit is contained in:
commit
a82ffa45a0
1 changed files with 3 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue