Various fixes

This commit is contained in:
Ilya Laktyushin
2025-02-09 00:38:53 +04:00
parent ab5595c8d4
commit 8f0481be16
10 changed files with 47 additions and 18 deletions

View File

@@ -353,6 +353,14 @@ final class FullscreenControlsComponent: Component {
return CGSize(width: availableSize.width, height: leftBackgroundSize.height)
}
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
let result = super.hitTest(point, with: event)
if result === self {
return nil
}
return result
}
}
func makeView() -> View {