From 756494a1c3299060503f2b6595a5701dde8a6b70 Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 14 Feb 2026 19:32:18 +0000 Subject: [PATCH] audioplayer: hide s-s when unavailable --- copyparty/web/browser.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index a65a1166..73ebf87f 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -2730,7 +2730,10 @@ var afilt = (function () { }; function setvis(vis) { - ebi('audio_eq').parentNode.style.display = ebi('audio_drc').parentNode.style.display = (vis ? '' : 'none'); + ebi('audio_eq').parentNode.style.display = + ebi('audio_drc').parentNode.style.display = + ebi('audio_ss').parentNode.style.display = + (vis ? '' : 'none'); } setvis(ACtx);