mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Merge pull request #955 from meshtastic/2.5.8
Hide signal meter on node details if hops away > 0
This commit is contained in:
commit
63e33cb64b
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ struct NodeInfoItem: View {
|
|||
color: Color(UIColor(hex: UInt32(node.num))),
|
||||
circleSize: 75
|
||||
)
|
||||
if node.snr != 0 && !node.viaMqtt {
|
||||
if node.snr != 0 && !node.viaMqtt && node.hopsAway == 0 {
|
||||
Spacer()
|
||||
VStack {
|
||||
let signalStrength = getLoRaSignalStrength(snr: node.snr, rssi: node.rssi, preset: modemPreset)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue