Change the local account icon.

This commit is contained in:
Maurice Parker
2019-10-23 13:52:07 -05:00
parent 0dff95e51f
commit 4fcd134c6a
7 changed files with 31 additions and 5 deletions

View File

@@ -15,11 +15,12 @@ protocol AddAccountDismissDelegate: UIViewController {
class AddAccountViewController: UITableViewController, AddAccountDismissDelegate {
@IBOutlet private weak var localAccountImageView: UIImageView!
@IBOutlet private weak var localAccountNameLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
localAccountImageView.image = AppAssets.image(for: .onMyMac)
localAccountNameLabel.text = Account.defaultLocalAccountName
}