Toob Player

This commit is contained in:
Robin E. R. Davies
2025-06-15 16:41:11 -04:00
parent 6ea45f46df
commit 13883f91ab
26 changed files with 1314 additions and 547 deletions
+8 -1
View File
@@ -472,7 +472,6 @@ const PluginControlView =
throw new PiPedalStateError("Missing control value.");
}
return ((
<PluginControl key={uiControl.symbol} instanceId={this.props.instanceId} uiControl={uiControl} value={controlValue.value}
onChange={(value: number) => { this.onControlValueChanged(controlValue!.key, value) }}
onPreviewChange={(value: number) => { this.onPreviewChange(controlValue!.key, value) }}
@@ -480,6 +479,14 @@ const PluginControlView =
/>
));
// return ((
// <PluginControl key={uiControl.symbol} instanceId={this.props.instanceId} uiControl={uiControl} value={controlValue.value}
// onChange={(value: number) => { this.onControlValueChanged(controlValue!.key, value) }}
// onPreviewChange={(value: number) => { this.onPreviewChange(controlValue!.key, value) }}
// requestIMEEdit={(uiControl: any, value: any) => this.requestImeEdit(uiControl, value)}
// />
// ));
}