diff --git a/BlueprintUILists/Sources/ListReorderGesture.swift b/BlueprintUILists/Sources/ListReorderGesture.swift index acfb8104..667bc79a 100644 --- a/BlueprintUILists/Sources/ListReorderGesture.swift +++ b/BlueprintUILists/Sources/ListReorderGesture.swift @@ -189,12 +189,12 @@ fileprivate extension ListReorderGesture } override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? { - if UIAccessibility.isVoiceOverRunning { - if UIAccessibility.focusedElement(using: nil) as? NSObject == proxyElement { - // Intercept touch events to avoid activating contained elements. - return self - } + if UIAccessibility.isVoiceOverRunning, + UIAccessibility.focusedElement(using: nil) as? NSObject == proxyElement { + // Intercept touch events to avoid activating contained elements. + return self } + return super.hitTest(point, with: event) }