Kelvin Sherlock's fix to avoid uninstalled font problem

This commit is contained in:
tudnai 2020-07-26 17:31:56 -07:00
parent 61a81ccaf8
commit 2e1f0cf2d0
1 changed files with 7 additions and 0 deletions

View File

@ -941,6 +941,13 @@ class ViewController: NSViewController {
}
upd.resume()
}
// Kelvin Sherlock's fix to avoid uninstalled font problems
override func awakeFromNib() {
self.display.font = NSFont(name: "PrintChar21", size: 32)
}
override func viewDidLoad() {
super.viewDidLoad()