From 4688094aa4ed077e93a2727fcf971ecf38b222d0 Mon Sep 17 00:00:00 2001 From: Jage9 Date: Mon, 23 Feb 2026 02:10:51 -0500 Subject: [PATCH] Adjust piano octave/instrument shortcut feedback --- client/public/version.js | 2 +- client/src/main.ts | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/client/public/version.js b/client/public/version.js index 68a6960..fc581fa 100644 --- a/client/public/version.js +++ b/client/public/version.js @@ -1,5 +1,5 @@ // Maintainer-controlled web client version. // Format: YYYY.MM.DD Rn (example: 2026.02.20 R2) -window.CHGRID_WEB_VERSION = "2026.02.23 R222"; +window.CHGRID_WEB_VERSION = "2026.02.23 R223"; // Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid. window.CHGRID_TIME_ZONE = "America/Detroit"; diff --git a/client/src/main.ts b/client/src/main.ts index c3c89c5..c1c9921 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -2702,13 +2702,7 @@ function handlePianoUseModeInput(code: string): void { const next = Math.max(-2, Math.min(2, current + (code === 'Equal' ? 1 : -1))); item.params.octave = next; signaling.send({ type: 'item_update', itemId, params: { octave: next } }); - void previewPianoSettingChange(item, { octave: next }); updateStatus(`octave ${next}.`); - if (next === current) { - audio.sfxUiCancel(); - } else { - audio.sfxUiBlip(); - } return; } if (code.startsWith('Digit')) { @@ -2743,7 +2737,6 @@ function handlePianoUseModeInput(code: string): void { brightness: defaults.brightness, }); updateStatus(`Instrument ${instrument}.`); - audio.sfxUiBlip(); } return; }