summaryrefslogtreecommitdiff
path: root/modules/dashboard/Performance.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2026-03-12 22:25:55 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2026-03-12 22:25:55 +1100
commitc4239001f2049049fafbf71a486dd466e0ecc043 (patch)
tree830a9c30e876934fee77bb07492893a80c307d2d /modules/dashboard/Performance.qml
parentcircularindicator: guard signal emissions with change checks (diff)
downloadcaelestia-shell-c4239001f2049049fafbf71a486dd466e0ecc043.tar.gz
caelestia-shell-c4239001f2049049fafbf71a486dd466e0ecc043.tar.bz2
caelestia-shell-c4239001f2049049fafbf71a486dd466e0ecc043.zip
dashboard: gate network sparkline timers on visibility
Diffstat (limited to 'modules/dashboard/Performance.qml')
-rw-r--r--modules/dashboard/Performance.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/dashboard/Performance.qml b/modules/dashboard/Performance.qml
index e73d8ed..306f9b8 100644
--- a/modules/dashboard/Performance.qml
+++ b/modules/dashboard/Performance.qml
@@ -836,7 +836,7 @@ Item {
Timer {
interval: Config.dashboard.resourceUpdateInterval
- running: true
+ running: networkCard.visible
repeat: true
onTriggered: sparklineCanvas._tickCount++
}
@@ -846,7 +846,7 @@ Item {
to: 1
duration: Config.dashboard.resourceUpdateInterval
loops: Animation.Infinite
- running: true
+ running: networkCard.visible
}
Behavior on smoothMax {