From a0d41bfdaf741c5edf80435b266474090fbed877 Mon Sep 17 00:00:00 2001 From: AskaEth Date: Sat, 25 Jul 2026 17:30:30 +0800 Subject: [PATCH] fix: progress arc also needs false (was true, drawing near-complete circle) --- dashboards/forza_composite/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboards/forza_composite/index.html b/dashboards/forza_composite/index.html index 51b3a73..93e8379 100644 --- a/dashboards/forza_composite/index.html +++ b/dashboards/forza_composite/index.html @@ -107,7 +107,7 @@ function draw(cur,max){ const pd=pc*totalLen; ctx.beginPath(); if(pd<=arcLen){ - ctx.arc(sx,sy,sr,d2r(As),d2r(As+(Ae-As)*(pd/arcLen)),true); + ctx.arc(sx,sy,sr,d2r(As),d2r(As+(Ae-As)*(pd/arcLen)),false); }else{ ctx.arc(sx,sy,sr,d2r(As),d2r(Ae),false); ctx.lineTo(ex+(pd-arcLen)/lineLen*(lx-ex),ey);