diff --git a/src/main.ts b/src/main.ts index e6f3918..b06de8e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -464,6 +464,14 @@ class MotifApp { this.enablePlayerControls(); this.updateStatus(''); + // Intent: after selecting "Use this", bring the workbench controls into view. + // Do this after the card is visible and MIDI is loaded. + try { + this.playerSection.scrollIntoView({ behavior: 'smooth', block: 'start' }); + } catch { + // ignore + } + } catch (error) { this.updateStatus(`Load error: ${error instanceof Error ? error.message : 'Unknown error'}`); }