From bd6771e203bf43f5affa4bf976c34ff8af0a4b06 Mon Sep 17 00:00:00 2001 From: Shawn Date: Fri, 12 Jun 2026 19:22:10 -0400 Subject: [PATCH] =?UTF-8?q?feat:=20Visual=20tuner=20with=20mute=20?= =?UTF-8?q?=E2=80=94=20Tuner.jsx,=20pipeline=20pitch=20detection,=20status?= =?UTF-8?q?=20bar=20toggle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.jsx | 2 ++ src/FootswitchBar.jsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/App.jsx b/src/App.jsx index dc5843e..9b04a8c 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -747,6 +747,8 @@ export default function App(){ onBankDown={handleBankDown} onGlobalBypass={handleGlobalBypass} globalBypass={globalBypass} + onTunerToggle={handleTunerToggle} + tunerEnabled={state.tuner_enabled} onPresetClick={(idx)=>{const p=currentBankPresets[parseInt(idx)];if(p)handleLoadPreset(p.bank,p.num-1);}} /> diff --git a/src/FootswitchBar.jsx b/src/FootswitchBar.jsx index bf2dc4a..6feedb1 100644 --- a/src/FootswitchBar.jsx +++ b/src/FootswitchBar.jsx @@ -143,6 +143,8 @@ export default function FootswitchBar({ onBankDown, onGlobalBypass, globalBypass, + onTunerToggle, + tunerEnabled, onPresetClick, onSnapshotClick, }) {