Skip to content

Commit

Permalink
param: bit better alignment in editor
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Dec 10, 2023
1 parent f37c415 commit 11f4e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MAVProxy/modules/mavproxy_paramedit/param_editor_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __init__(self, *args, **kwds):
self.ro_attr = wx.grid.GridCellAttr()
self.ro_attr.SetReadOnly(True)
self.ce_attr = wx.grid.GridCellAttr()
self.ce_attr.SetAlignment(hAlign=wx.ALIGN_CENTER, vAlign=wx.ALIGN_CENTER)
self.ce_attr.SetAlignment(hAlign=wx.ALIGN_CENTER, vAlign=wx.ALIGN_TOP)
self.display_list.SetColAttr(PE_PARAM, self.ro_attr)
self.display_list.SetColAttr(PE_UNITS, self.ro_attr)
self.display_list.SetColAttr(PE_DESC, self.ro_attr)
Expand Down

0 comments on commit 11f4e81

Please sign in to comment.