Made the disclosure big enough that you could actually hit it with your finger.

This commit is contained in:
Maurice Parker 2019-04-17 10:49:38 -05:00
parent c9beee89ab
commit 2972410930

View File

@ -135,7 +135,7 @@ private extension MasterTableViewCell {
func addAccessoryView() {
let button = UIButton(type: .roundedRect)
button.frame = CGRect(x: 0, y: 0, width: 15.0, height: 15.0)
button.frame = CGRect(x: 0, y: 0, width: 25.0, height: 25.0)
button.setImage(AppAssets.chevronRightImage, for: .normal)
button.tintColor = AppAssets.chevronDisclosureColor
button.addTarget(self, action: #selector(buttonPressed(_:)), for: UIControl.Event.touchUpInside)