diff --git a/pass/Controllers/PasswordDetailTableViewController.swift b/pass/Controllers/PasswordDetailTableViewController.swift index 7f715ff..a3cce2c 100644 --- a/pass/Controllers/PasswordDetailTableViewController.swift +++ b/pass/Controllers/PasswordDetailTableViewController.swift @@ -367,6 +367,14 @@ class PasswordDetailTableViewController: UITableViewController, UIGestureRecogni } } } + + func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool { + if touch.view!.isKind(of: UIButton.classForCoder()) { + return false + } + return true + } + @IBAction func back(segue:UIStoryboardSegue) { }