Skip to content

Commit

Permalink
missionEditorFrame.py: Remove agl checkbox
Browse files Browse the repository at this point in the history
* It's not implemented

Signed-off-by: Ryan Friedman <[email protected]>
  • Loading branch information
Ryanf55 authored and tridge committed Dec 16, 2024
1 parent 5127953 commit c18b164
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MAVProxy/modules/mavproxy_misseditor/missionEditorFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit c18b164

Please sign in to comment.