Browse Source

Slightly bigger font for Y-axis

(cherry picked from commit 3f350b51b5addd552063522d6c51c8133443421c)
Jon Mårtensson 5 years ago
parent
commit
815534c8df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      FreeAPS/Sources/Modules/Home/View/Chart/MainChartView.swift

+ 1 - 1
FreeAPS/Sources/Modules/Home/View/Chart/MainChartView.swift

@@ -156,7 +156,7 @@ struct MainChartView: View {
 
             return Text(glucoseFormatter.string(from: value as NSNumber)!)
                 .position(CGPoint(x: fullSize.width - 12, y: range.minY + CGFloat(line) * yStep))
-                .font(.caption2)
+                .font(.caption) // Before: .font(.caption2)
                 .asAny()
         }
     }