mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-18 21:47:44 +01:00
Fixed handling of Pending in automation.
This commit is contained in:
parent
3b5f89e6a1
commit
8b8f85dd85
4 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue