From 350930c7036f13214af276db6401854f415393eb Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Wed, 30 Mar 2022 10:25:04 +0200 Subject: [PATCH] Show consumption history also if there's only a root meter --- nymea-app/ui/mainviews/EnergyView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nymea-app/ui/mainviews/EnergyView.qml b/nymea-app/ui/mainviews/EnergyView.qml index d2751e06..e63fe8ec 100644 --- a/nymea-app/ui/mainviews/EnergyView.qml +++ b/nymea-app/ui/mainviews/EnergyView.qml @@ -158,7 +158,7 @@ MainViewBase { ConsumersHistory { Layout.fillWidth: true Layout.preferredHeight: width - visible: consumers.count > 0 + visible: consumers.count > 0 || rootMeter != null colors: root.thingColors consumers: consumers }