Explorar el Código

VLCEditToolbar: addToPlaylistButton: Set label to medium

Soomin Lee hace 6 años
padre
commit
0ac74e7e2c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Sources/VLCEditToolbar.swift

+ 1 - 1
Sources/VLCEditToolbar.swift

@@ -49,7 +49,7 @@ class VLCEditToolbar: UIView {
     private var addToPlaylistButton: UIButton = {
         let addToPlaylistButton = UIButton(type: .system)
         addToPlaylistButton.setTitle(NSLocalizedString("ADD_TO_PLAYLIST", comment: ""), for: .normal)
-        addToPlaylistButton.titleLabel?.font = UIFont.systemFont(ofSize: 17)
+        addToPlaylistButton.titleLabel?.font = UIFont.systemFont(ofSize: 17, weight: .medium)
         addToPlaylistButton.contentHorizontalAlignment = .left
         addToPlaylistButton.addTarget(self, action: #selector(addToPlaylist), for: .touchUpInside)
         addToPlaylistButton.tintColor = .orange