|
@@ -37,7 +37,13 @@ class KMBatchSelectedFilesView: KMBaseXibView {
|
|
|
|
|
|
self.subtitleLabel.textColor = NSColor.init(hex: "#94989C")
|
|
|
self.subtitleLabel.font = NSFont.SFProTextRegular(12.0)
|
|
|
- self.subtitleLabel.stringValue = NSLocalizedString("Drop files here or Click Add Files at bottom left button.", comment: "")
|
|
|
+ self.subtitleLabel.stringValue = NSLocalizedString("Drop files here or Click “+”. Drag files to reorder as you need.\nYou can also add files or folders via the lower left button.", comment: "")
|
|
|
+
|
|
|
+ let title = NSLocalizedString("Drop files here or Click “+”. Drag files to reorder as you need.\nYou can also add files or folders via the lower left button.", comment: "")
|
|
|
+ let paragraphStyle = NSMutableParagraphStyle()
|
|
|
+ paragraphStyle.lineHeightMultiple = 1.32
|
|
|
+ paragraphStyle.alignment = .center
|
|
|
+ self.subtitleLabel.attributedStringValue = NSMutableAttributedString(string: title, attributes: [NSAttributedString.Key.paragraphStyle: paragraphStyle, .foregroundColor : NSColor(hex: "#94989C"), NSAttributedString.Key.font: NSFont.SFProTextRegular(12)])
|
|
|
|
|
|
self.box.moveCallback = { [unowned self] mouseEntered, mouseBox in
|
|
|
if mouseEntered {
|