Control Zooming disabled.

This commit is contained in:
Robin E. R. Davies
2025-07-19 13:26:53 -04:00
parent 6d7f79c6af
commit 71fc534a78
14 changed files with 109 additions and 33 deletions
+2
View File
@@ -372,6 +372,7 @@ export class Pedalboard implements Deserializable<Pedalboard> {
this.snapshots = input.snapshots ? Snapshot.deserializeArray(input.snapshots): [];
this.selectedSnapshot = input.selectedSnapshot;
this.pathProperties = input.pathProperties;
this.selectedPlugin = input.selectedPlugin??-1;
return this;
}
@@ -387,6 +388,7 @@ export class Pedalboard implements Deserializable<Pedalboard> {
snapshots: (Snapshot | null)[] = [];
selectedSnapshot: number = -1;
pathProperties: {[Name: string]: string} = {};
selectedPlugin: number = -1;
*itemsGenerator(): Generator<PedalboardItem, void, undefined> {
let it = itemGenerator_(this.items);