From cd569faf6e7bd3da522946b58e2a826834ea2a9b Mon Sep 17 00:00:00 2001 From: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com> Date: Sun, 15 Dec 2024 15:10:01 -0700 Subject: [PATCH] missionEditorFrame.py: Remove agl checkbox * It's not implemented Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com> --- MAVProxy/modules/mavproxy_misseditor/missionEditorFrame.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MAVProxy/modules/mavproxy_misseditor/missionEditorFrame.py b/MAVProxy/modules/mavproxy_misseditor/missionEditorFrame.py index 499c5f4b33..8ef816bc91 100755 --- a/MAVProxy/modules/mavproxy_misseditor/missionEditorFrame.py +++ b/MAVProxy/modules/mavproxy_misseditor/missionEditorFrame.py @@ -185,7 +185,8 @@ def __init__(self, state, elemodel='SRTM3', *args, **kwds): self.label_loiter_rad = wx.StaticText(self, wx.ID_ANY, "Loiter Radius") self.text_ctrl_loiter_radius = wx.TextCtrl(self, wx.ID_ANY, "", style=wx.TE_PROCESS_ENTER | wx.TE_PROCESS_TAB) self.checkbox_loiter_dir = wx.CheckBox(self, wx.ID_ANY, "CW") - self.checkbox_agl = wx.CheckBox(self, wx.ID_ANY, "AGL") + # The AGL checkbox is not yet implemented. + # self.checkbox_agl = wx.CheckBox(self, wx.ID_ANY, "AGL") self.label_default_alt = wx.StaticText(self, wx.ID_ANY, "Default Alt") self.text_ctrl_wp_default_alt = wx.TextCtrl(self, wx.ID_ANY, "", style=wx.TE_PROCESS_ENTER | wx.TE_PROCESS_TAB) self.label_home_location = wx.StaticText(self, wx.ID_ANY, "Home Location")