فهرست منبع

VLCEditToolbar: addToPlaylistButton: Set label to medium

Soomin Lee 6 سال پیش
والد
کامیت
0ac74e7e2c
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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