From fd634ee85fd71bd2afe36def5fdf727538f6d2b0 Mon Sep 17 00:00:00 2001 From: Raphael Forment Date: Wed, 20 Dec 2023 12:08:27 +0100 Subject: [PATCH] fixing nonsensical reference --- src/API.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/API.ts b/src/API.ts index 6c73754..fa1072b 100644 --- a/src/API.ts +++ b/src/API.ts @@ -130,7 +130,6 @@ export class UserAPI { load: samples; public global: { [key: string]: any }; - public g; constructor(public app: Editor) { this.MidiConnection = new MidiConnection(this, app.settings); @@ -138,6 +137,7 @@ export class UserAPI { this.g = this.global; } + public g: any; _loadUniverseFromInterface = (universe: string) => { this.app.selected_universe = universe.trim();