forked from organicmaps/organicmaps
[ios] Fixed touch handling for search & route views.
This commit is contained in:
parent
1864e76a65
commit
a115f85ffa
2 changed files with 12 additions and 0 deletions
|
@ -351,4 +351,10 @@ extern NSString * const kAlohalyticsTapEventKey;
|
|||
return _timeLeftLabel;
|
||||
}
|
||||
|
||||
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
|
||||
{
|
||||
// Prevent super call to stop event propagation
|
||||
// [super touchesBegan:touches withEvent:event];
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -802,6 +802,12 @@ static BOOL keyboardLoaded = NO;
|
|||
return [[NSLocale preferredLanguages] firstObject];
|
||||
}
|
||||
|
||||
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
|
||||
{
|
||||
// Prevent super call to stop event propagation
|
||||
// [super touchesBegan:touches withEvent:event];
|
||||
}
|
||||
|
||||
#pragma mark - Properties
|
||||
|
||||
- (CGRect)infoRect
|
||||
|
|
Loading…
Add table
Reference in a new issue