From c71345117b0f82deaee8bd539c6717456f6faf58 Mon Sep 17 00:00:00 2001 From: Laurent Lalanne Date: Thu, 4 Aug 2016 10:08:10 +0200 Subject: [PATCH] LP-230 Set "FixMe" in all wrong enums to be consistent --- ground/gcs/src/share/qml/js/uav.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ground/gcs/src/share/qml/js/uav.js b/ground/gcs/src/share/qml/js/uav.js index 796b3084d..a8e767a96 100644 --- a/ground/gcs/src/share/qml/js/uav.js +++ b/ground/gcs/src/share/qml/js/uav.js @@ -159,7 +159,7 @@ function frameType() { if (frameTypeText.length != SystemSettings.SystemSettingsConstants.AirframeTypeCount) { console.log("uav.js: frameType() do not match systemSettings.airframeType uavo"); - return "Unknow" + return "FixMe" } else { return frameTypeText[systemSettings.airframeType] } @@ -438,7 +438,7 @@ function flightModeName() { if (flightModeNameText.length != FlightStatus.FlightStatusConstants.FlightModeCount) { console.log("uav.js: flightModeName() do not match flightStatus.flightMode uavo"); - return "UNKNOW" + return "FixMe" } else { return flightModeNameText[flightStatus.flightMode]; }