From 81a37b3acdd1443522f4700309099018c64c8150 Mon Sep 17 00:00:00 2001 From: Michael Oborne Date: Wed, 21 Sep 2011 08:30:32 +0800 Subject: [PATCH] Planner quick edit for doug --- Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs | 2 ++ Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs index a234cedc4e..e5577aa145 100644 --- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs +++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.Designer.cs @@ -174,6 +174,7 @@ this.hud1.Name = "hud1"; this.hud1.navpitch = 0F; this.hud1.navroll = 0F; + this.hud1.opengl = true; this.hud1.pitch = 0F; this.hud1.roll = 0F; this.hud1.streamjpg = null; @@ -320,6 +321,7 @@ // CMB_action // this.CMB_action.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.CMB_action.DropDownWidth = 110; this.CMB_action.FormattingEnabled = true; resources.ApplyResources(this.CMB_action, "CMB_action"); this.CMB_action.Name = "CMB_action"; diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs index 0df116d0ae..6da4c6e8f1 100644 --- a/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs +++ b/Tools/ArdupilotMegaPlanner/GCSViews/FlightData.cs @@ -97,6 +97,7 @@ namespace ArdupilotMega.GCSViews list.Add("NAVIGATE"); list.Add("LOITER"); list.Add("TAKEOFF"); + list.Add("CALIBRATE_GYRO"); } CMB_action.DataSource = list;