From 1c95643407507376ae4e6b42b3ce0230e275b068 Mon Sep 17 00:00:00 2001 From: Manuel Date: Wed, 15 Jan 2025 12:37:20 +0100 Subject: [PATCH] Test 3 --- .../devicelist/battery/PageBatteryCellVoltages.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/settings/devicelist/battery/PageBatteryCellVoltages.qml b/pages/settings/devicelist/battery/PageBatteryCellVoltages.qml index 0681cbfae..80608f8f4 100644 --- a/pages/settings/devicelist/battery/PageBatteryCellVoltages.qml +++ b/pages/settings/devicelist/battery/PageBatteryCellVoltages.qml @@ -176,7 +176,7 @@ Page { text: "Overview" content.children: [ Column { - width: (parent.width - Theme.geometry_page_content_horizontalMargin) / 4 + width: parent.width / 4 Text { text: batteryCellVoltageSum != "--" ? batteryCellVoltageSum + "V" : "--" color: Theme.color_font_primary @@ -191,7 +191,7 @@ Page { } }, Column { - width: (parent.width - Theme.geometry_page_content_horizontalMargin) / 4 + width: parent.width / 4 Text { text: batteryCellVoltageDiff != "--" ? batteryCellVoltageDiff + "V" : "--" color: Theme.color_font_primary @@ -206,7 +206,7 @@ Page { } }, Column { - width: (parent.width - Theme.geometry_page_content_horizontalMargin) / 4 + width: parent.width / 4 Text { text: batteryMaxCellVoltage != "--" ? batteryMaxCellVoltage + "V" : "--" color: Theme.color_font_primary @@ -221,7 +221,7 @@ Page { } }, Column { - width: (parent.width - Theme.geometry_page_content_horizontalMargin) / 4 + width: parent.width / 4 Text { text: batteryMinCellVoltage != "--" ? batteryMinCellVoltage + "V" : "--" color: Theme.color_font_primary