debian build fixed for new name mardrone
[mardrone] / mardrone / BarGauge.qml
1 import Qt 4.7
2
3 Rectangle {
4     color:"#00000000"
5     border.color: "black"
6     width: 20
7     height: 100
8     property int val:0
9     property int max:100
10     Rectangle {
11         color:"green"
12         anchors.bottom: parent.bottom
13         height:parent.height*val/max
14         width: parent.width
15     }
16 }