This commit is contained in:
Stuart Breckenridge
2023-03-23 20:55:58 +08:00
parent e95163c0d5
commit 2eb3b2d676

View File

@@ -22,14 +22,14 @@ struct DisplayAndBehaviorsView: View {
Section(header: Text("Timeline", comment: "Display & Behaviours: Timeline section header")) {
SettingsViewRows.sortOldestToNewest($appDefaults.timelineSortDirectionBool)
SettingsViewRows.groupByFeed($appDefaults.timelineGroupByFeed)
SettingsViewRows.confirmMarkAllAsRead($appDefaults.confirmMarkAllAsRead)
SettingsViewRows.markAsReadOnScroll($appDefaults.markArticlesAsReadOnScroll)
SettingsViewRows.refreshToClearReadArticles($appDefaults.refreshClearsReadArticles)
SettingsViewRows.timelineLayout
}
Section(header: Text("Articles", comment: "Display & Behaviours: Articles section header")) {
Section(header: Text("Article", comment: "Display & Behaviours: Article section header")) {
SettingsViewRows.themeSelection
SettingsViewRows.confirmMarkAllAsRead($appDefaults.confirmMarkAllAsRead)
SettingsViewRows.openLinksInNetNewsWire(Binding<Bool>(
get: { !appDefaults.useSystemBrowser },
set: { appDefaults.useSystemBrowser = !$0 }