forked from organicmaps/organicmaps
[iOS] fix bookmark deletion
This commit is contained in:
parent
444cea88ae
commit
0bd90c9362
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ CGFloat const kPinDiameter = 18.0f;
|
|||
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
|
||||
{
|
||||
auto const s = m_sections.at(indexPath.section);
|
||||
return GetFramework().GetBookmarkManager().IsCategoryFromCatalog(m_categoryId) && s != Section::Info;
|
||||
return !GetFramework().GetBookmarkManager().IsCategoryFromCatalog(m_categoryId) && s != Section::Info;
|
||||
}
|
||||
|
||||
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
|
||||
|
|
Loading…
Add table
Reference in a new issue