From f263df3ccdc7eab6d3befe8f189715df3cf27b59 Mon Sep 17 00:00:00 2001 From: Soramane <61896496+soramanew@users.noreply.github.com> Date: Wed, 16 Jul 2025 21:44:27 +1000 Subject: internal: create service config --- modules/dashboard/dash/Weather.qml | 2 +- modules/lock/WeatherInfo.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/dashboard/dash/Weather.qml b/modules/dashboard/dash/Weather.qml index 52d026d..6bb9792 100644 --- a/modules/dashboard/dash/Weather.qml +++ b/modules/dashboard/dash/Weather.qml @@ -38,7 +38,7 @@ Item { anchors.horizontalCenter: parent.horizontalCenter animate: true - text: Config.dashboard.useFahrenheit ? Weather.tempF : Weather.tempC + text: Config.services.useFahrenheit ? Weather.tempF : Weather.tempC color: Colours.palette.m3primary font.pointSize: Appearance.font.size.extraLarge font.weight: 500 diff --git a/modules/lock/WeatherInfo.qml b/modules/lock/WeatherInfo.qml index bbb529f..c5d1cf5 100644 --- a/modules/lock/WeatherInfo.qml +++ b/modules/lock/WeatherInfo.qml @@ -40,7 +40,7 @@ RowLayout { Layout.fillWidth: true animate: true - text: Config.dashboard.useFahrenheit ? Weather.tempF : Weather.tempC + text: Config.services.useFahrenheit ? Weather.tempF : Weather.tempC color: Colours.palette.m3primary horizontalAlignment: Text.AlignHCenter font.pointSize: Appearance.font.size.extraLarge -- cgit v1.2.3-freya