Quellcode durchsuchen

VLCActionSheet: Bold header title

Mike JS. Choi vor 7 Jahren
Ursprung
Commit
d29158b748
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      Sources/VLCActionSheet/VLCActionSheetSectionHeader.swift

+ 1 - 1
Sources/VLCActionSheet/VLCActionSheetSectionHeader.swift

@@ -15,7 +15,7 @@ class VLCActionSheetSectionHeader: UIView {
 
     let title: UILabel = {
         let title = UILabel()
-        title.font = UIFont.systemFont(ofSize: 13)
+        title.font = UIFont.boldSystemFont(ofSize: 13)
         title.translatesAutoresizingMaskIntoConstraints = false
         return title
     }()