Skip to content

Commit 00503d8

Browse files
committed
Remove the default labels for fonts
1 parent 7bcaa4b commit 00503d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/PulseUI/Features/Settings/SettingsConsoleCellDesignView.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ private struct SettingsConsoleTaskOptionsView: View {
6969

7070
@ViewBuilder
7171
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))
7373

7474
Stepper("Line Limit: \(options.contentLineLimit)", value: $options.contentLineLimit, in: 1...20)
7575

7676
Toggle("Show Task Description", isOn: $options.showTaskDescription)
7777

7878
NavigationLink {
79-
// TODO: navigation link
79+
// TODO: navigation link
8080
List(selection: $options.contentComponents) {
8181
ForEach(UserSettings.DisplayOptions.ContentComponent.allCases) {
8282
Text($0.rawValue).tag($0.rawValue)
@@ -104,7 +104,7 @@ private struct SettingsConsoleTaskOptionsView: View {
104104
Toggle("Show Details", isOn: $options.isShowingDetails)
105105

106106
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))
108108

109109
Stepper("Line Limit: \(options.detailsLineLimit)", value: $options.detailsLineLimit, in: 1...20)
110110

0 commit comments

Comments
 (0)