disables swipe back gesture on trackpads
This commit is contained in:
parent
c76a7aff40
commit
98c8ea6d9f
@ -89,6 +89,14 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Disable swipe back on iPad Mice
|
||||||
|
if #available(iOS 13.4, *) {
|
||||||
|
guard let gesture = self.navigationController?.interactivePopGestureRecognizer as? UIPanGestureRecognizer else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
gesture.allowedScrollTypesMask = []
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override func viewWillAppear(_ animated: Bool) {
|
override func viewWillAppear(_ animated: Bool) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user