$OpenBSD: patch-src_Features_Node_cpp,v 1.1 2021/04/12 10:17:11 landry Exp $

Index: src/Features/Node.cpp
--- src/Features/Node.cpp.orig
+++ src/Features/Node.cpp
@@ -373,7 +373,8 @@ QString Node::toHtml()
 
     if ((i = findKey("_waypoint_")) != -1)
         D += "<p><b>"+QApplication::translate("MapFeature", "Waypoint")+"</b><br/>";
-    D += "<i>"+QApplication::translate("MapFeature", "coord")+": </i>" + COORD2STRING(position().y()) + " (" + Coord2Sexa(position().y()) + ") / " + COORD2STRING(position().x()) + " (" + Coord2Sexa(position().x()) + ")";
+    D += "<i>"+QApplication::translate("MapFeature", "WGS84 coordinates")+": </i>" + COORD2STRING(position().y()) + " (" + Coord2Sexa(position().y()) + ") / " + COORD2STRING(position().x()) + " (" + Coord2Sexa(position().x()) + ")<br/>";
+    D += "<i>"+QApplication::translate("MapFeature", "Projected coordinates")+": </i>" + COORD2STRING(projected().y()) + " / " + COORD2STRING(projected().x());
 
     if ((i = findKey("_description_")) != -1)
         D += "<br/><i>"+QApplication::translate("MapFeature", "description")+": </i>" + tagValue(i);
