mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-30 09:34:06 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
9 lines
209 B
Swift
9 lines
209 B
Swift
import UIKit
|
|
|
|
class ExpandedTouchView: UIView {
|
|
override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
|
|
let rect = bounds.insetBy(dx: -30, dy: 0)
|
|
return rect.contains(point)
|
|
}
|
|
}
|