Swiftgram/submodules/LegacyComponents/Sources/TGPhotoPaintSparseView.m
2020-02-22 15:38:54 +04:00

15 lines
270 B
Objective-C

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