fix(ui): reduce idle GPU usage for route status (#5767)

* fix(ui): reduce idle GPU usage for route status

* fix(ui): disable heartbeat for reduced motion

* fix(ui): preserve polling outside Tauri focus
This commit is contained in:
Allen Xu
2026-08-04 08:34:19 +08:00
committed by GitHub
parent 492245dcb9
commit 968794e30e
7 changed files with 97 additions and 4 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ export function ProxyTabContent({
className="gap-1.5 h-6 ml-auto mr-2"
>
<Activity
className={`h-3 w-3 ${isRunning ? "animate-pulse" : ""}`}
className={`h-3 w-3 ${isRunning ? "status-heartbeat" : ""}`}
/>
{isRunning
? t("settings.advanced.proxy.running")