mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Hide signal meter on node details if hops away > 0
This commit is contained in:
parent
e89dc21942
commit
0cb4cc3714
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