damus

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

commit fdaf785869b40848ded07eee04b5ecb80bde5b2f
parent c0f9b0a8c04717330e4bb131fbf034d8c240d827
Author: Bryan Montz <bryanmontz@me.com>
Date:   Thu, 13 Jul 2023 06:48:18 -0500

fixed: icon color for developer mode setting is incorrect in low-light mode

Changelog-Fixed: icon color for developer mode setting is incorrect in low-light mode
Signed-off-by: Bryan Montz <bryanmontz@me.com>
Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mdamus/Views/ConfigView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/ConfigView.swift b/damus/Views/ConfigView.swift @@ -61,7 +61,7 @@ struct ConfigView: View { } NavigationLink(value: Route.DeveloperSettings(settings: settings)) { - IconLabel(NSLocalizedString("Developer", comment: "Section header for developer settings"), img_name: "magic-stick2.fill", color: .black) + IconLabel(NSLocalizedString("Developer", comment: "Section header for developer settings"), img_name: "magic-stick2.fill", color: DamusColors.adaptableBlack) } }