forked from shadowfacts/Tusker
Fix gallery button delay on Catalyst/Designed for iPad
This commit is contained in:
parent
908c4ee085
commit
2386f545e2
|
@ -198,6 +198,8 @@ class GalleryItemViewController: UIViewController {
|
||||||
doubleTap = UITapGestureRecognizer(target: self, action: #selector(viewDoublePressed))
|
doubleTap = UITapGestureRecognizer(target: self, action: #selector(viewDoublePressed))
|
||||||
doubleTap.delegate = self
|
doubleTap.delegate = self
|
||||||
doubleTap.numberOfTapsRequired = 2
|
doubleTap.numberOfTapsRequired = 2
|
||||||
|
// This is needed to prevent a delay between tapping a button on and the action firing on Catalyst and Designed for iPad
|
||||||
|
doubleTap.delaysTouchesEnded = false
|
||||||
// this requirement is needed to make sure the double tap is ever recognized
|
// this requirement is needed to make sure the double tap is ever recognized
|
||||||
singleTap.require(toFail: doubleTap)
|
singleTap.require(toFail: doubleTap)
|
||||||
view.addGestureRecognizer(singleTap)
|
view.addGestureRecognizer(singleTap)
|
||||||
|
|
Loading…
Reference in New Issue