Change cell selection background color to be blue. Issue #619

This commit is contained in:
Maurice Parker
2019-04-20 17:12:39 -05:00
parent 1b793c4827
commit 48d6f11aeb
6 changed files with 45 additions and 7 deletions

View File

@@ -129,12 +129,19 @@ class MasterTableViewCell : UITableViewCell {
private extension MasterTableViewCell {
func commonInit() {
theme()
addSubviewAtInit(unreadCountView)
addSubviewAtInit(faviconImageView)
addSubviewAtInit(titleView)
addDisclosureView()
}
func theme() {
let bgView = UIView()
bgView.backgroundColor = AppAssets.selectionBackgroundColor
selectedBackgroundView = bgView
}
func addDisclosureView() {
disclosureButton = UIButton(type: .roundedRect)