From 754bc36cd626b0cd0b735b465a7f460f46e306d0 Mon Sep 17 00:00:00 2001 From: Til Schmitter Date: Sat, 9 May 2026 15:17:08 +0200 Subject: [PATCH] revert trying to skip rendering wave bar when it's disabled because it broke the position indicator --- copyparty/web/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index 680b089b..a20affe5 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -2771,7 +2771,7 @@ var pbar = (function () { }); } - if (!widget.is_open || !r.waves) + if (!widget.is_open) return; pctx.fillStyle = '#bbb'; pctx.fillRect((x - w / 2) - 1, 0, w + 2, pc.h);