Skip to content

Commit

Permalink
Small tweak to labels
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebash authored Jan 12, 2025
1 parent ff28b8d commit 5837306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LoopFollow/Contact/Settings/ContactSettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ struct ContactSettingsView: View {
if viewModel.contactEnabled {
Section(header: Text("Additional Information")) {
Text("Show Trend")
.font(.headline)
.font(.subheadline)
Picker("Show Trend", selection: $contactTrendSelection) {
ForEach(0..<options.count, id: \.self) { index in
Text(self.options[index]).tag(index)
Expand All @@ -82,7 +82,7 @@ struct ContactSettingsView: View {
.pickerStyle(SegmentedPickerStyle())

Text("Show Delta")
.font(.headline)
.font(.subheadline)
Picker("Show Delta", selection: $contactDeltaSelection) {
ForEach(0..<options.count, id: \.self) { index in
Text(self.options[index]).tag(index)
Expand Down

0 comments on commit 5837306

Please sign in to comment.