diff --git a/Meshtastic/Helpers/BLEManager.swift b/Meshtastic/Helpers/BLEManager.swift index c044a005..fb492afd 100644 --- a/Meshtastic/Helpers/BLEManager.swift +++ b/Meshtastic/Helpers/BLEManager.swift @@ -1105,7 +1105,7 @@ class BLEManager: NSObject, ObservableObject, CBCentralManagerDelegate, CBPeriph meshPacket.id = UInt32.random(in: UInt32(UInt8.max).. - + @@ -77,6 +77,7 @@ + diff --git a/Meshtastic/Views/Nodes/PositionLog.swift b/Meshtastic/Views/Nodes/PositionLog.swift index 0b7fd7b7..87cec4a2 100644 --- a/Meshtastic/Views/Nodes/PositionLog.swift +++ b/Meshtastic/Views/Nodes/PositionLog.swift @@ -26,10 +26,10 @@ struct PositionLog: View { //Add a table for mac and ipad VStack { Table(node.positions!.reversed() as! [PositionEntity]) { - TableColumn("SeqNo") { position in + TableColumn("Seq No") { position in Text(String(position.seqNo)) } - .width(75) + //.width(75) TableColumn("Latitude") { position in Text(String(format: "%.6f", position.latitude ?? 0)) } @@ -39,15 +39,15 @@ struct PositionLog: View { TableColumn("Altitude") { position in Text(String(position.altitude)) } - .width(75) + //.width(75) TableColumn("Sats") { position in Text(String(position.satsInView)) } - .width(75) + //.width(75) TableColumn("Speed") { position in Text(String(position.speed)) } - .width(75) + //.width(75) TableColumn("Heading") { position in Text(String(position.heading)) }