Swiftgram/submodules/LegacyComponents/Sources/TGPhotoEditorSparseView.m
2020-06-16 02:39:52 +03:00

15 lines
272 B
Objective-C

#import "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