From 8f5d0f57d6c9ac46b2d68e63f349644bd4e75dba Mon Sep 17 00:00:00 2001 From: Lumaa Date: Sat, 6 Jan 2024 03:40:24 +0100 Subject: [PATCH] Tint was in wrong place --- Threaded/Views/Settings/AboutView.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Threaded/Views/Settings/AboutView.swift b/Threaded/Views/Settings/AboutView.swift index 6299a53..9345280 100644 --- a/Threaded/Views/Settings/AboutView.swift +++ b/Threaded/Views/Settings/AboutView.swift @@ -12,7 +12,6 @@ struct AboutView: View { aboutApp } label: { Text("about.app") - .tint(Color.blue) } .listRowThreaded() @@ -30,7 +29,7 @@ struct AboutView: View { } } } - .listThreaded(tint: Color.blue) + .listThreaded() .navigationTitle("about") .navigationBarTitleDisplayMode(.inline) .onDisappear { @@ -55,7 +54,7 @@ struct AboutView: View { } .padding(.horizontal) } - .listThreaded() + .listThreaded(tint: Color.blue) .navigationTitle("about.app") .navigationBarTitleDisplayMode(.large) }