From 6c8efe2a50604143b6d686e5c65ab349f9aa8e0b Mon Sep 17 00:00:00 2001 From: KennyG Date: Mon, 30 Mar 2026 09:26:10 -0400 Subject: [PATCH] Clarified documentation --- ui/src/app/services/downloads.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/app/services/downloads.service.ts b/ui/src/app/services/downloads.service.ts index 36db9c5..60d37bb 100644 --- a/ui/src/app/services/downloads.service.ts +++ b/ui/src/app/services/downloads.service.ts @@ -122,10 +122,10 @@ export class DownloadsService { private scheduleUpdatedRefresh() { // Coalesce high-frequency download progress events into a capped refresh rate. - // requestAnimationFrame (~60fps) is smooth but expensive on large queues. + // requestAnimationFrame (~60fps) is smooth but expensive remotely and on large queues. // We trade a little smoothness for much lower CPU: - // - foreground: ~8fps - // - background: ~1fps + // - foreground: ~4fps + // - background: 1/30 seconds if (this.updateRefreshScheduled) { return; }