Skip to content

Commit

Permalink
Update GroundPowerWidget.qml
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed May 12, 2024
1 parent 156fd07 commit f563e49
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions qml/ui/widgets/GroundPowerWidget.qml
Original file line number Diff line number Diff line change
Expand Up @@ -104,27 +104,49 @@ BaseWidget {
font.bold: true
font.pixelSize: detailPanelFontPixels
anchors.left: parent.left
anchors.margins: 0,0,25
anchors.margins: 25,0,25
verticalAlignment: Text.AlignVCenter
}

TextField {
id: battery_low
textColor: "white"
width: 200
height: 40
placeholderText: settings.ground_battery_low
}
Text {
text: qsTr("Battery Mid")
color: "white"
height: parent.height
font.bold: true
font.pixelSize: detailPanelFontPixels
anchors.left: parent.left
anchors.margins: 0,0,25
verticalAlignment: Text.AlignVCenter
}
TextField {
id: battery_mid
textColor: "white"
width: 200
height: 40
placeholderText: settings.ground_battery_mid
}
Text {
text: qsTr("Battery Full")
color: "white"
height: parent.height
font.bold: true
font.pixelSize: detailPanelFontPixels
anchors.left: parent.left
anchors.margins: 0,0,25
verticalAlignment: Text.AlignVCenter
}
TextField {
id: battery_full
textColor: "white"
width: 200
height: 40
placeholderText: settings.ground_battery_high
placeholderText: settings.ground_battery_full
}
}
}
Expand Down

0 comments on commit f563e49

Please sign in to comment.