[iOS] fix bookmark deletion

This commit is contained in:
Aleksey Belouosv 2018-07-04 22:38:55 +03:00 committed by Vlad Mihaylenko
parent 444cea88ae
commit 0bd90c9362

View file

@ -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