mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-02-21 12:06:17 +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) {
|
ZStack(alignment: .center) {
|
||||||
Circle()
|
Circle()
|
||||||
.strokeBorder(Color.white, lineWidth: 1)
|
.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)
|
.frame(width: 24, height: 24)
|
||||||
|
|
||||||
Image(systemName: type.iconName(isPrivate: notification.status?.visibility == .priv))
|
Image(systemName: type.iconName(isPrivate: notification.status?.visibility == .direct))
|
||||||
.resizable()
|
.resizable()
|
||||||
.scaledToFit()
|
.scaledToFit()
|
||||||
.frame(width: 12, height: 12)
|
.frame(width: 12, height: 12)
|
||||||
|
|
Loading…
Reference in a new issue