Fix extension point image name

This commit is contained in:
Maurice Parker
2020-10-30 17:10:24 -05:00
parent 6f42628428
commit 0b4fb4250a
4 changed files with 4 additions and 4 deletions

View File

@@ -153,7 +153,7 @@ class SettingsViewController: UITableViewController {
let acctCell = tableView.dequeueReusableCell(withIdentifier: "SettingsComboTableViewCell", for: indexPath) as! SettingsComboTableViewCell
acctCell.applyThemeProperties()
let extensionPoint = extensionPoints[indexPath.row]
acctCell.comboImage?.image = extensionPoint.templateImage
acctCell.comboImage?.image = extensionPoint.image
acctCell.comboNameLabel?.text = extensionPoint.title
cell = acctCell
}