forked from organicmaps/organicmaps
Merge pull request #3219 from Zverik/newlines
[editor] Add newlines to notes
This commit is contained in:
commit
b800247807
1 changed files with 2 additions and 2 deletions
|
@ -965,7 +965,7 @@ void Editor::CreateNote(ms::LatLon const & latLon, FeatureID const & fid,
|
|||
case NoteProblemType::PlaceDoesNotExist:
|
||||
sstr << kPlaceDoesNotExistMessage;
|
||||
if (!note.empty())
|
||||
sstr << " User comments: \"" << note << '\"';
|
||||
sstr << "\n\nUser comments: " << note << "\n\n";
|
||||
break;
|
||||
case NoteProblemType::General:
|
||||
sstr << note;
|
||||
|
@ -993,5 +993,5 @@ string DebugPrint(Editor::FeatureStatus fs)
|
|||
};
|
||||
}
|
||||
|
||||
const char * const Editor::kPlaceDoesNotExistMessage = "The place has gone or never existed. This is an auto-generated note from MAPS.ME application: a user reports a POI that is visible on a map (which can be outdated), but cannot be found on the ground.";
|
||||
const char * const Editor::kPlaceDoesNotExistMessage = "The place has gone or never existed.\n\nThis is an auto-generated note from MAPS.ME application: a user reports a POI that is visible on a map (which can be outdated), but cannot be found on the ground.";
|
||||
} // namespace osm
|
||||
|
|
Loading…
Add table
Reference in a new issue