From 9f82336c4b65a7bd3cb8adf1b998c5c1cc7f1b0f Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Sat, 2 Jul 2022 03:24:37 +0200 Subject: [PATCH] [editor] Allow removing cuisines from selection Signed-off-by: Arnaud Vergnet --- indexer/editable_map_object.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/indexer/editable_map_object.cpp b/indexer/editable_map_object.cpp index 95f7970f86..b0dc29460c 100644 --- a/indexer/editable_map_object.cpp +++ b/indexer/editable_map_object.cpp @@ -578,7 +578,14 @@ template void EditableMapObject::SetCuisinesImpl(vector const & cuisines) { FeatureParams params; - params.m_types.assign(m_types.begin(), m_types.end()); + + // Ignore cuisine types as these will be set from the cuisines param + auto const & isCuisine = ftypes::IsCuisineChecker::Instance(); + for (uint32_t const type : m_types) + { + if (!isCuisine(type)) + params.m_types.push_back(type); + } Classificator const & cl = classif(); for (auto const & cuisine : cuisines)