Fix a bug about font
This commit is contained in:
parent
93901ec010
commit
b18f5741b0
1 changed files with 2 additions and 1 deletions
|
|
@ -20,6 +20,7 @@ class FillPasswordTableViewCell: ContentTableViewCell {
|
||||||
override func awakeFromNib() {
|
override func awakeFromNib() {
|
||||||
super.awakeFromNib()
|
super.awakeFromNib()
|
||||||
// Initialization code
|
// Initialization code
|
||||||
|
contentTextField.font = UIFont(name: Globals.passwordFonts, size: (contentTextField.font?.pointSize)!)
|
||||||
}
|
}
|
||||||
|
|
||||||
override func setSelected(_ selected: Bool, animated: Bool) {
|
override func setSelected(_ selected: Bool, animated: Bool) {
|
||||||
|
|
@ -30,7 +31,7 @@ class FillPasswordTableViewCell: ContentTableViewCell {
|
||||||
|
|
||||||
@IBAction func generatePassword(_ sender: UIButton) {
|
@IBAction func generatePassword(_ sender: UIButton) {
|
||||||
let plainPassword = self.delegate?.generatePassword() ?? Utils.generatePassword(length: 16)
|
let plainPassword = self.delegate?.generatePassword() ?? Utils.generatePassword(length: 16)
|
||||||
contentTextField.attributedText = Utils.attributedPassword(plainPassword: plainPassword)
|
self.setContent(content: plainPassword)
|
||||||
Utils.copyToPasteboard(textToCopy: plainPassword)
|
Utils.copyToPasteboard(textToCopy: plainPassword)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue