Skip to content

Commit

Permalink
Test 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-manuel committed Jan 15, 2025
1 parent c68c60c commit 1c95643
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pages/settings/devicelist/battery/PageBatteryCellVoltages.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 1c95643

Please sign in to comment.