Merge pull request #6422 from igrechuhin/MAPSME-4722

[MAPSME-4722] [ios] Fixed bottom menu multiple touches.
This commit is contained in:
Vlad Mihaylenko 2017-06-29 15:59:03 +03:00 committed by GitHub
commit 0f19ad00e5

View file

@ -138,6 +138,13 @@ CGFloat constexpr kTimeWidthRegular = 128;
for (NSLayoutConstraint * constraint in self.mainButtonConstraintsLeftToRight)
constraint.priority = UILayoutPriorityFittingSizeLevel;
}
self.p2pButton.exclusiveTouch = YES;
self.searchButton.exclusiveTouch = YES;
self.bookmarksButton.exclusiveTouch = YES;
self.menuButton.exclusiveTouch = YES;
self.goButton.exclusiveTouch = YES;
self.toggleInfoButton.exclusiveTouch = YES;
}
- (void)layoutSubviews