Tidies up the Help section iconography in Settings

This commit is contained in:
Stuart Breckenridge
2023-02-10 10:12:07 +08:00
parent e91a20333a
commit 455097b830
2 changed files with 7 additions and 5 deletions

View File

@@ -213,7 +213,8 @@ struct SettingsViewRows {
Image(systemName: sheet.systemImage)
.resizable()
.renderingMode(.template)
.foregroundColor(Color(uiColor: .tertiaryLabel))
.symbolRenderingMode(.hierarchical)
.foregroundColor(Color(uiColor: AppAssets.primaryAccentColor))
.aspectRatio(contentMode: .fit)
.frame(width: 30.0, height: 30.0)
}
@@ -230,10 +231,11 @@ struct SettingsViewRows {
Label {
Text("About", comment: "Button: opens the NetNewsWire about view.")
} icon: {
Image(systemName: "info.circle")
Image(systemName: "info.circle.fill")
.resizable()
.renderingMode(.template)
.foregroundColor(Color(uiColor: .tertiaryLabel))
.symbolRenderingMode(.hierarchical)
.foregroundColor(Color(uiColor: AppAssets.primaryAccentColor))
.aspectRatio(contentMode: .fit)
.frame(width: 30.0, height: 30.0)
}

View File

@@ -34,9 +34,9 @@ public enum HelpSheet: CustomStringConvertible, CaseIterable {
public var systemImage: String {
switch self {
case .help:
return "questionmark.app"
return "questionmark.circle.fill"
case .website:
return "globe"
return "safari.fill"
}
}
}