Skip to content

Commit

Permalink
Big brain refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
NSExceptional committed Oct 20, 2022
1 parent 2bd809a commit f00af28
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Classes/ExplorerInterface/FLEXWindow.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ - (id)initWithFrame:(CGRect)frame {
}

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
BOOL pointInside = NO;
if ([self.eventDelegate shouldHandleTouchAtPoint:point]) {
pointInside = [super pointInside:point withEvent:event];
}
return pointInside;
return [self.eventDelegate shouldHandleTouchAtPoint:point];
}

- (BOOL)shouldAffectStatusBarAppearance {
Expand Down

0 comments on commit f00af28

Please sign in to comment.