summaryrefslogtreecommitdiff
path: root/modules/dashboard/Performance.qml
diff options
context:
space:
mode:
authorTim Hämisch <tim@thaemisch.net>2025-06-15 13:40:47 +0200
committerGitHub <noreply@github.com>2025-06-15 13:40:47 +0200
commit68874082b4cfee63feaecc0640646ad0ba753da7 (patch)
tree815a1113a4bd83373283253a35f0220a08a8cfe6 /modules/dashboard/Performance.qml
parentlauncher: use standard logout command (diff)
parentdashboard: fix uptime (diff)
downloadcaelestia-shell-68874082b4cfee63feaecc0640646ad0ba753da7.tar.gz
caelestia-shell-68874082b4cfee63feaecc0640646ad0ba753da7.tar.bz2
caelestia-shell-68874082b4cfee63feaecc0640646ad0ba753da7.zip
Merge branch 'main' into betteractions
Diffstat (limited to 'modules/dashboard/Performance.qml')
-rw-r--r--modules/dashboard/Performance.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/dashboard/Performance.qml b/modules/dashboard/Performance.qml
index 8513d19..b7bf8d0 100644
--- a/modules/dashboard/Performance.qml
+++ b/modules/dashboard/Performance.qml
@@ -65,7 +65,7 @@ Row {
property bool primary
readonly property real primaryMult: primary ? 1.2 : 1
- readonly property real thickness: DashboardConfig.sizes.resourceProgessThickness * primaryMult
+ readonly property real thickness: Config.dashboard.sizes.resourceProgessThickness * primaryMult
property color fg1: Colours.palette.m3primary
property color fg2: Colours.palette.m3secondary
@@ -74,8 +74,8 @@ Row {
anchors.verticalCenter: parent.verticalCenter
- implicitWidth: DashboardConfig.sizes.resourceSize * primaryMult
- implicitHeight: DashboardConfig.sizes.resourceSize * primaryMult
+ implicitWidth: Config.dashboard.sizes.resourceSize * primaryMult
+ implicitHeight: Config.dashboard.sizes.resourceSize * primaryMult
onValue1Changed: canvas.requestPaint()
onValue2Changed: canvas.requestPaint()