@@ -69,14 +69,14 @@ private struct SettingsConsoleTaskOptionsView: View {
69
69
70
70
@ViewBuilder
71
71
private var content : some View {
72
- Stepper ( " Font Size: \( options. contentFontSize) \( options . contentFontSize == defaultContentFontSize ? " (Default) " : " " ) " , value: $options. contentFontSize, in: ( defaultContentFontSize- 3 ) ... ( defaultContentFontSize+ 3 ) )
72
+ Stepper ( " Font Size: \( options. contentFontSize) " , value: $options. contentFontSize, in: ( defaultContentFontSize- 3 ) ... ( defaultContentFontSize+ 3 ) )
73
73
74
74
Stepper ( " Line Limit: \( options. contentLineLimit) " , value: $options. contentLineLimit, in: 1 ... 20 )
75
75
76
76
Toggle ( " Show Task Description " , isOn: $options. showTaskDescription)
77
77
78
78
NavigationLink {
79
- // TODO: navigation link
79
+ // TODO: navigation link
80
80
List ( selection: $options. contentComponents) {
81
81
ForEach ( UserSettings . DisplayOptions. ContentComponent. allCases) {
82
82
Text ( $0. rawValue) . tag ( $0. rawValue)
@@ -104,7 +104,7 @@ private struct SettingsConsoleTaskOptionsView: View {
104
104
Toggle ( " Show Details " , isOn: $options. isShowingDetails)
105
105
106
106
if options. isShowingDetails {
107
- Stepper ( " Font Size: \( options. detailsFontSize) \( options . detailsFontSize == defaultDefailsFontSize ? " (Default) " : " " ) " , value: $options. detailsFontSize, in: ( defaultDefailsFontSize- 3 ) ... ( defaultDefailsFontSize+ 3 ) )
107
+ Stepper ( " Font Size: \( options. detailsFontSize) " , value: $options. detailsFontSize, in: ( defaultDefailsFontSize- 3 ) ... ( defaultDefailsFontSize+ 3 ) )
108
108
109
109
Stepper ( " Line Limit: \( options. detailsLineLimit) " , value: $options. detailsLineLimit, in: 1 ... 20 )
110
110
0 commit comments