1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

OP-1887 Hide bat tooltips when battery panel not displayed

This commit is contained in:
Laurent Lalanne 2015-05-14 12:32:41 +02:00
parent 08536f3a01
commit a941a1aa04

View File

@ -536,7 +536,8 @@ Item {
anchors.fill: parent
TooltipArea {
text: "Reset consumed energy"
text: "Reset consumed energy"
visible: display_bat == true ? 1 : 0
}
MouseArea {
@ -594,7 +595,8 @@ Item {
//color: panels.batColors[SystemAlarms.Alarm_Battery]
TooltipArea {
text: "Reset consumed energy"
text: "Reset consumed energy"
visible: display_bat == true ? 1 : 0
}
MouseArea {