mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Make smol
This commit is contained in:
parent
cf7d6aa5aa
commit
d6e26c3395
1 changed files with 3 additions and 3 deletions
|
|
@ -46,7 +46,7 @@ struct Contacts: View {
|
|||
|
||||
ZStack {
|
||||
Image(systemName: "circle.fill")
|
||||
.opacity(true ? 1 : 0)
|
||||
.opacity(channel.allPrivateMessages.count > 0 ? 1 : 0)
|
||||
.font(.system(size: 10))
|
||||
.foregroundColor(.accentColor)
|
||||
}
|
||||
|
|
@ -101,7 +101,7 @@ struct Contacts: View {
|
|||
}
|
||||
}
|
||||
}
|
||||
.frame(maxWidth: .infinity, maxHeight: 80, alignment: .leading)
|
||||
.frame(height: 62)
|
||||
.contextMenu {
|
||||
Button {
|
||||
channel.mute = !channel.mute
|
||||
|
|
@ -206,7 +206,7 @@ struct Contacts: View {
|
|||
}
|
||||
}
|
||||
}
|
||||
.frame(height: 90)
|
||||
.frame(height: 62)
|
||||
.contextMenu {
|
||||
Button {
|
||||
user.mute = !user.mute
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue