Skip to content

Commit c18b164

Browse files
Ryanf55tridge
authored andcommitted
missionEditorFrame.py: Remove agl checkbox
* It's not implemented Signed-off-by: Ryan Friedman <[email protected]>
1 parent 5127953 commit c18b164

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

MAVProxy/modules/mavproxy_misseditor/missionEditorFrame.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ def __init__(self, state, elemodel='SRTM3', *args, **kwds):
185185
self.label_loiter_rad = wx.StaticText(self, wx.ID_ANY, "Loiter Radius")
186186
self.text_ctrl_loiter_radius = wx.TextCtrl(self, wx.ID_ANY, "", style=wx.TE_PROCESS_ENTER | wx.TE_PROCESS_TAB)
187187
self.checkbox_loiter_dir = wx.CheckBox(self, wx.ID_ANY, "CW")
188-
self.checkbox_agl = wx.CheckBox(self, wx.ID_ANY, "AGL")
188+
# The AGL checkbox is not yet implemented.
189+
# self.checkbox_agl = wx.CheckBox(self, wx.ID_ANY, "AGL")
189190
self.label_default_alt = wx.StaticText(self, wx.ID_ANY, "Default Alt")
190191
self.text_ctrl_wp_default_alt = wx.TextCtrl(self, wx.ID_ANY, "", style=wx.TE_PROCESS_ENTER | wx.TE_PROCESS_TAB)
191192
self.label_home_location = wx.StaticText(self, wx.ID_ANY, "Home Location")

0 commit comments

Comments
 (0)