diff --git a/iphone/Maps/UI/Editor/MWMEditorViewController.mm b/iphone/Maps/UI/Editor/MWMEditorViewController.mm index d2ac79f392..72c68e75e1 100644 --- a/iphone/Maps/UI/Editor/MWMEditorViewController.mm +++ b/iphone/Maps/UI/Editor/MWMEditorViewController.mm @@ -333,8 +333,7 @@ void registerCellsForTableView(std::vector const & cells, UITab return mid == MetadataID::FMD_POSTCODE || mid == MetadataID::FMD_BUILDING_LEVELS; }), editableProperties.end()); BOOL const isCreating = self.isCreating; - BOOL const isThereNotes = - !isCreating && editableProperties.empty() && !isAddressEditable && !isNameEditable; + BOOL const showNotesToOSMEditors = !isCreating; if (isNameEditable) { @@ -367,7 +366,7 @@ void registerCellsForTableView(std::vector const & cells, UITab registerCellsForTableView(v, self.tableView); } - if (isThereNotes) + if (showNotesToOSMEditors) { m_sections.push_back(MWMEditorSectionNote); m_cells[MWMEditorSectionNote] = kSectionNoteCellTypes;