damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 6593c9456d35389dd4a794854c48d57790ebcf02
parent 186954195d918f270c74547415fc4f66ff5bdcac
Author: William Casarin <jb55@jb55.com>
Date:   Tue,  3 Jan 2023 23:49:02 -0800

profile: show white circle on buttons in dark mode

Diffstat:
Mdamus/Views/ProfileView.swift | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/damus/Views/ProfileView.swift b/damus/Views/ProfileView.swift @@ -146,7 +146,7 @@ struct ProfileView: View { }) { Image(systemName: "bolt.circle") .symbolRenderingMode(.palette) - .foregroundStyle(colorScheme == .dark ? .white : .black, .black) + .foregroundStyle(colorScheme == .dark ? .white : .black, colorScheme == .dark ? .white : .black) .font(.system(size: 32).weight(.thin)) .contextMenu { Button { @@ -174,7 +174,7 @@ struct ProfileView: View { Image(systemName: "bubble.left.circle") .symbolRenderingMode(.palette) .font(.system(size: 32).weight(.thin)) - .foregroundStyle(colorScheme == .dark ? .white : .black, .black) + .foregroundStyle(colorScheme == .dark ? .white : .black, colorScheme == .dark ? .white : .black) } }