diff --git a/src/QmlControls/VehicleRotationCal.qml b/src/QmlControls/VehicleRotationCal.qml index a61eff4bc2fb6123dec0417785e47a4a8ecafb1d..587f68db3fa5b8702f77a5b42c2b214a679bef9b 100644 --- a/src/QmlControls/VehicleRotationCal.qml +++ b/src/QmlControls/VehicleRotationCal.qml @@ -49,7 +49,6 @@ Rectangle { Rectangle { readonly property int inset: 5 - property string calText: calInProgress ? calInProgressText : (calValid ? "Completed" : "Incomplete") x: inset y: inset @@ -71,18 +70,7 @@ Rectangle { horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignBottom font.pixelSize: ScreenTools.mediumFontPixelSize - font.bold: true - color: "black" - text: parent.calText - } - QGCLabel { - width: parent.width - height: parent.height - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignBottom - font.pixelSize: ScreenTools.mediumFontPixelSize - color: calInProgress ? "yellow" : "white" - text: parent.calText + text: calInProgress ? calInProgressText : (calValid ? "Completed" : "Incomplete") } } }