From 7a4fcc8669b6a862d32df82935c87ec9f75e1dff Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Sat, 21 Dec 2019 07:40:59 -0800 Subject: [PATCH] Slight increase to small size to fit label --- src/QmlControls/MissionItemIndexLabel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QmlControls/MissionItemIndexLabel.qml b/src/QmlControls/MissionItemIndexLabel.qml index 5dc490ad4..c3e7ed474 100644 --- a/src/QmlControls/MissionItemIndexLabel.qml +++ b/src/QmlControls/MissionItemIndexLabel.qml @@ -30,7 +30,7 @@ Canvas { property real _height: showGimbalYaw ? _gimbalYawWidth : (labelControl.visible ? labelControl.height : indicator.height) property real _gimbalYawRadius: ScreenTools.defaultFontPixelHeight property real _gimbalYawWidth: _gimbalYawRadius * 2 - property real _smallRadius: (ScreenTools.defaultFontPixelHeight * ScreenTools.smallFontPointRatio) / 2 + property real _smallRadius: ((ScreenTools.defaultFontPixelHeight * ScreenTools.smallFontPointRatio) / 2) + 1 property real _normalRadius: ScreenTools.defaultFontPixelHeight * 0.66 property real _indicatorRadius: small ? _smallRadius : _normalRadius property real _gimbalRadians: degreesToRadians(vehicleYaw + gimbalYaw - 90) -- 2.22.0