show the charging state in the battery icon

smaller percentage text
This commit is contained in:
Marco Martin 2016-02-16 16:19:02 +01:00
parent 79763041b3
commit a1ab2d2dbd
2 changed files with 3 additions and 3 deletions

View file

@ -73,7 +73,7 @@ FocusScope {
batteryType: model["Type"]
percent: pmSource.data["Battery0"]["Percent"]
hasBattery: true
pluggedIn: pmSource.data["Battery0"]["State"] === "Charging" && pmSource.data["Battery0"]["Is Power Supply"]
pluggedIn: pmSource.data["Battery0"]["State"] === "Charging"
}
Column {

View file

@ -136,7 +136,7 @@ Item {
RowLayout {
id: batteryLayout
anchors.fill: parent
spacing: 0
spacing: -10
PlasmaComponents.Label {
Layout.fillWidth: true
Layout.fillHeight: true
@ -152,7 +152,7 @@ Item {
Layout.fillHeight: true
hasBattery: true
percent: pmSource.data["Battery"]["Percent"]
//pluggedIn: batteryContainer.pluggedIn
pluggedIn: pmSource.data["AC Adapter"]["Plugged in"]
// height: batteryContainer.iconSize
// width: height
}