Fix null reference in edge case
This commit is contained in:
parent
1906d4acc4
commit
875c2b52c4
1 changed files with 2 additions and 1 deletions
|
|
@ -919,7 +919,8 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
userInitiated: false);
|
||||
}
|
||||
|
||||
uifield.Row.UpdateValidationState(errors);
|
||||
// Some fields are hosted outside of SettingsRows (e.g. Section Headers like Brim) and should skip validation updates
|
||||
uifield.Row?.UpdateValidationState(errors);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue