feat: use sexier audio waveform #265

Merged
talksik merged 2 commits from worktree-starry-gliding-hennessy into main 2026-06-11 17:07:26 +00:00
Showing only changes of commit ba82729f27 - Show all commits
@@ -133,13 +133,7 @@ export function CenteredWaveform({
const y = (height - h) / 2;
drawCtx.roundRect(centerX + k * stride, y, barWidth, h, barWidth / 2);
if (k > 0) {
drawCtx.roundRect(
centerX - k * stride,
y,
barWidth,
h,
barWidth / 2,
);
drawCtx.roundRect(centerX - k * stride, y, barWidth, h, barWidth / 2);
}
}
drawCtx.fill();