diff --git a/Tusker/Views/Poll/PollOptionsView.swift b/Tusker/Views/Poll/PollOptionsView.swift index cfba545e..f3d03a45 100644 --- a/Tusker/Views/Poll/PollOptionsView.swift +++ b/Tusker/Views/Poll/PollOptionsView.swift @@ -105,7 +105,11 @@ class PollOptionsView: UIControl { override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? { // don't let subviews receive touch events - return self + if isEnabled { + return self + } else { + return nil + } } // MARK: - UIControl