Merge pull request #436 from meshtastic/2.2.15_Working_Changes

Remove excess focused field, add space to trace route text
This commit is contained in:
Garth Vander Houwen 2023-12-21 14:14:37 -08:00 committed by GitHub
commit 72849e10ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 3 deletions

View file

@ -669,7 +669,7 @@ class BLEManager: NSObject, CBPeripheralDelegate, MqttClientProxyManagerDelegate
if hopNode != nil {
hopNodes.append(traceRouteHop)
}
routeString += "\(hopNode?.user?.longName ?? "unknown".localized) -->"
routeString += "\(hopNode?.user?.longName ?? "unknown".localized) --> "
}
routeString += traceRoute?.node?.user?.longName ?? "unknown".localized
traceRoute?.routeText = routeString

View file

@ -241,7 +241,6 @@ struct ChannelMessageList: View {
}, secondaryButton: .cancel())
}
.onAppear {
self.focusedField = .messageText
if !message.read {
message.read = true
do {

View file

@ -218,7 +218,6 @@ struct UserMessageList: View {
}, secondaryButton: .cancel())
}
.onAppear {
self.focusedField = .messageText
if !message.read {
message.read = true
do {