Planner quick edit for doug

This commit is contained in:
Michael Oborne 2011-09-21 08:30:32 +08:00
parent 670710d4bf
commit 142e5e92cc
2 changed files with 3 additions and 0 deletions

View File

@ -174,6 +174,7 @@
this.hud1.Name = "hud1"; this.hud1.Name = "hud1";
this.hud1.navpitch = 0F; this.hud1.navpitch = 0F;
this.hud1.navroll = 0F; this.hud1.navroll = 0F;
this.hud1.opengl = true;
this.hud1.pitch = 0F; this.hud1.pitch = 0F;
this.hud1.roll = 0F; this.hud1.roll = 0F;
this.hud1.streamjpg = null; this.hud1.streamjpg = null;
@ -320,6 +321,7 @@
// CMB_action // CMB_action
// //
this.CMB_action.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CMB_action.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CMB_action.DropDownWidth = 110;
this.CMB_action.FormattingEnabled = true; this.CMB_action.FormattingEnabled = true;
resources.ApplyResources(this.CMB_action, "CMB_action"); resources.ApplyResources(this.CMB_action, "CMB_action");
this.CMB_action.Name = "CMB_action"; this.CMB_action.Name = "CMB_action";

View File

@ -97,6 +97,7 @@ namespace ArdupilotMega.GCSViews
list.Add("NAVIGATE"); list.Add("NAVIGATE");
list.Add("LOITER"); list.Add("LOITER");
list.Add("TAKEOFF"); list.Add("TAKEOFF");
list.Add("CALIBRATE_GYRO");
} }
CMB_action.DataSource = list; CMB_action.DataSource = list;