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"] batteryType: model["Type"]
percent: pmSource.data["Battery0"]["Percent"] percent: pmSource.data["Battery0"]["Percent"]
hasBattery: true hasBattery: true
pluggedIn: pmSource.data["Battery0"]["State"] === "Charging" && pmSource.data["Battery0"]["Is Power Supply"] pluggedIn: pmSource.data["Battery0"]["State"] === "Charging"
} }
Column { Column {

View file

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