mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-02-16 17:55:13 +00:00
Fix DM badge
This commit is contained in:
parent
93ee83c65d
commit
2ba2675ae4
1 changed files with 2 additions and 2 deletions
|
@ -55,10 +55,10 @@ struct NotificationRowView: View {
|
|||
ZStack(alignment: .center) {
|
||||
Circle()
|
||||
.strokeBorder(Color.white, lineWidth: 1)
|
||||
.background(Circle().foregroundColor(type.tintColor(isPrivate: notification.status?.visibility == .priv)))
|
||||
.background(Circle().foregroundColor(type.tintColor(isPrivate: notification.status?.visibility == .direct)))
|
||||
.frame(width: 24, height: 24)
|
||||
|
||||
Image(systemName: type.iconName(isPrivate: notification.status?.visibility == .priv))
|
||||
Image(systemName: type.iconName(isPrivate: notification.status?.visibility == .direct))
|
||||
.resizable()
|
||||
.scaledToFit()
|
||||
.frame(width: 12, height: 12)
|
||||
|
|
Loading…
Reference in a new issue