From 5f6d223184d2b79f9125b2969d4163d72089377d Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 17 Jan 2021 17:47:14 -0800 Subject: [PATCH] mobile/statistics: bare minimum dark theme support The statistics themselves still are in a light theme, but at least the rest of the UI now works in both regular and dark themes. Signed-off-by: Dirk Hohndel --- mobile-widgets/qml/StatisticsPage.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mobile-widgets/qml/StatisticsPage.qml b/mobile-widgets/qml/StatisticsPage.qml index 7ad70271e..97d504222 100644 --- a/mobile-widgets/qml/StatisticsPage.qml +++ b/mobile-widgets/qml/StatisticsPage.qml @@ -15,6 +15,7 @@ Kirigami.Page { bottomPadding: 0 width: rootItem.width implicitWidth: rootItem.width + background: Rectangle { color: subsurfaceTheme.backgroundColor } property bool wide: width > rootItem.height StatsManager { id: statsManager @@ -56,6 +57,7 @@ Kirigami.Page { Label { text: chartName font.bold: isHeader + color: subsurfaceTheme.textColor } } }