Swiftgram/submodules/LegacyComponents/Sources/TGPhotoEditorSparseView.m
2025-06-18 17:24:21 +02:00

15 lines
289 B
Objective-C

#import <LegacyComponents/TGPhotoEditorSparseView.h>
@implementation TGPhotoEditorSparseView
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
UIView *view = [super hitTest:point withEvent:event];
if (view == self)
return nil;
return view;
}
@end