From 58a4d7a4c9f02a2fdbc9e4e855203a04b3437e32 Mon Sep 17 00:00:00 2001
From: Adam M Rivera <a432511@gmail.com>
Date: Mon, 23 Apr 2012 00:41:03 -0500
Subject: [PATCH] Planner: Fixed too long enum display text.

---
 Tools/ArdupilotMegaPlanner/Common.cs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Tools/ArdupilotMegaPlanner/Common.cs b/Tools/ArdupilotMegaPlanner/Common.cs
index 512076a36..312dcbe6c 100644
--- a/Tools/ArdupilotMegaPlanner/Common.cs
+++ b/Tools/ArdupilotMegaPlanner/Common.cs
@@ -365,7 +365,7 @@ namespace ArdupilotMega
             STABILIZE = 0,			// hold level position
             [DisplayText("Acro")]
             ACRO = 1,			// rate control
-            [DisplayText("Altitude Hold")]
+            [DisplayText("Alt Hold")]
             ALT_HOLD = 2,		// AUTO control
             [DisplayText("Auto")]
             AUTO = 3,			// AUTO control
@@ -373,11 +373,11 @@ namespace ArdupilotMega
             GUIDED = 4,		// AUTO control
             [DisplayText("Loiter")]
             LOITER = 5,		// Hold a single location
-            [DisplayText("Return to Launch")]
+            [DisplayText("RTL")]
             RTL = 6,				// AUTO control
             [DisplayText("Circle")]
             CIRCLE = 7,
-            [DisplayText("Position Hold")]
+            [DisplayText("Pos Hold")]
             POSITION = 8,
             [DisplayText("Land")]
             LAND = 9,				// AUTO control
-- 
GitLab