1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-18 08:54:15 +01:00

OP-1438 VSI_Arc_PFD+Status : Display OPLinkID as hex value, all uppercase.

This commit is contained in:
Laurent Lalanne 2014-08-24 00:23:39 +02:00
parent f1989ad468
commit 72c3d3e9c1

View File

@ -1040,13 +1040,14 @@ Item {
}
Text {
text: oplm_pair_id > 0 ? oplm_pair_id : "-- -- -- --"
text: oplm_pair_id > 0 ? oplm_pair_id.toString(16) : "-- -- -- --"
anchors.centerIn: parent
color: "white"
font {
family: "Arial"
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
capitalization: Font.AllUppercase
}
}
}