From a7f62a7bd8eae258f44d52dcb6266a399ccd528d Mon Sep 17 00:00:00 2001 From: Armin Date: Wed, 8 Jul 2026 18:23:23 +0200 Subject: [PATCH] Increase VU meter LED gap from 1px to 2px --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index be8a784..271fe55 100644 --- a/index.html +++ b/index.html @@ -550,7 +550,7 @@ function drawSpectrum() { const gap = 4; const labelW = 12; const segCount = 32; - const segG = 1; + const segG = 2; const segW = Math.floor((vw - labelW - (segCount - 1) * segG) / segCount); const totalSegW = segCount * segW + (segCount - 1) * segG; const segLeft = labelW + Math.floor(((vw - labelW) - totalSegW) / 2);