Server: Update table headers

This commit is contained in:
Arthur Golubtsov
2019-11-05 21:14:17 +03:00
parent 9f7fda0b16
commit d491a45468

View File

@@ -74,8 +74,8 @@ class CopterDataModel(QtCore.QAbstractTableModel):
def __init__(self, parent=None):
super(CopterDataModel, self).__init__(parent)
self.headers = ('copter ID', 'version', ' animation ID ', ' battery ', ' system ', 'calibration',
' mode ', 'selfcheck', 'current x y z yaw frame_id', ' start x y z ', 'dt')
self.headers = ('copter ID', 'version', ' animation ID ', ' battery ', ' system ', 'sensors',
' mode ', 'checks', 'current x y z yaw frame_id', ' start x y z ', 'dt')
self.data_contents = []
self.on_id_changed = None