Bug: losing lv2 state during snapshot selection

This commit is contained in:
Robin E. R. Davies
2026-01-16 14:20:42 -05:00
parent 69e54c3052
commit 1afbcc30f0
2 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -226,7 +226,7 @@ export class SnapshotValue {
this.isEnabled = input.isEnabled;
this.instanceId = input.instanceId;
this.controlValues = ControlValue.deserializeArray(input.controlValues);
this.lv2State = input.lv2state;
this.lv2State = input.lv2State;
this.pathProperties = input.pathProperties;
return this;
}