Commit e3cba035 authored by Aleksi Suomalainen's avatar Aleksi Suomalainen

Battery %

parent d052d9ed
...@@ -81,6 +81,7 @@ Page { ...@@ -81,6 +81,7 @@ Page {
} else if (batterystatus.value <= 5) { } else if (batterystatus.value <= 5) {
batteryimg.source = "images/battery0.png" batteryimg.source = "images/battery0.png"
} }
batterylbl.text = batterystatus.value + "%"
} }
} }
...@@ -93,8 +94,14 @@ Page { ...@@ -93,8 +94,14 @@ Page {
tools: Item { tools: Item {
Image { Image {
id: batteryimg id: batteryimg
font.pointSize: 8 width: 32
height: 32
}
Label {
anchors.left: batteryimg.right
id: batterylbl
color: "black" color: "black"
font.pointSize: 8
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment