forked from organicmaps/organicmaps-tmp
[iOS] Sharing Options пустой группы активна при тапе на More
https://jira.mail.ru/browse/MAPSME-12120
This commit is contained in:
parent
571a29e69d
commit
3d01e9af23
1 changed files with 6 additions and 1 deletions
|
@ -293,17 +293,22 @@ using namespace std;
|
|||
}
|
||||
|
||||
- (IBAction)onMore:(UIBarButtonItem *)sender {
|
||||
MWMTrackIDCollection trackIds = [[MWMBookmarksManager sharedManager] trackIdsForCategory:self.categoryId];
|
||||
MWMMarkIDCollection bookmarkdsIds = [[MWMBookmarksManager sharedManager] bookmarkIdsForCategory:self.categoryId];
|
||||
|
||||
auto actionSheet = [UIAlertController alertControllerWithTitle:nil
|
||||
message:nil
|
||||
preferredStyle:UIAlertControllerStyleActionSheet];
|
||||
|
||||
[actionSheet addAction:[UIAlertAction actionWithTitle:L(@"sharing_options")
|
||||
if (trackIds.count > 0 || bookmarkdsIds.count > 0) {
|
||||
[actionSheet addAction:[UIAlertAction actionWithTitle:L(@"sharing_options")
|
||||
style:UIAlertActionStyleDefault
|
||||
handler:^(UIAlertAction *_Nonnull action) {
|
||||
[self shareCategory];
|
||||
[Statistics logEvent:kStatBookmarksListItemSettings
|
||||
withParameters:@{kStatOption: kStatSharingOptions}];
|
||||
}]];
|
||||
}
|
||||
|
||||
[actionSheet addAction:[UIAlertAction actionWithTitle:L(@"search_show_on_map")
|
||||
style:UIAlertActionStyleDefault
|
||||
|
|
Loading…
Add table
Reference in a new issue