[iOS] expand touch area in elevation profile preview bar

https://jira.mail.ru/browse/MAPSME-13529
This commit is contained in:
Aleksey Belousov 2020-04-02 23:32:11 +03:00 committed by Vladimir Byko-Ianko
parent fc6374714c
commit 8091817031

View file

@ -58,6 +58,11 @@ class ViewPortView: UIView {
result.usesEvenOddFillRule = true
return result
}
override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
let rect = bounds.insetBy(dx: -30, dy: 0)
return rect.contains(point)
}
}
class ChartPreviewView: UIView {