Fixed handling of Pending in automation.

This commit is contained in:
Ottermandias 2024-01-17 14:29:30 +01:00
parent 3b5f89e6a1
commit 8b8f85dd85
4 changed files with 4 additions and 4 deletions

View file

@ -360,7 +360,7 @@ public class AutoDesignApplier : IDisposable
if (!parameterFlags.HasFlag(flag))
continue;
if (!respectManual || state[flag] is not StateChanged.Source.Manual)
if (!respectManual || state[flag] is not StateChanged.Source.Manual and not StateChanged.Source.Pending)
_state.ChangeCustomizeParameter(state, flag, design.Parameters[flag], source);
totalParameterFlags |= flag;
}