@@ -816,7 +816,7 @@ void QgsMapCanvas::showContextMenu( QgsMapMouseEvent *event )
816
816
const QgsPointXY transformedPoint = ct.transform ( mapPoint );
817
817
818
818
const int displayPrecision = crs.mapUnits () == QgsUnitTypes::DistanceDegrees ? 5 : 3 ;
819
- QAction *copyCoordinateAction = new QAction ( QStringLiteral ( " %1, %2 (%3 )" ).arg (
819
+ QAction *copyCoordinateAction = new QAction ( QStringLiteral ( " %3 (% 1, %2)" ).arg (
820
820
QString::number ( transformedPoint.x (), ' f' , displayPrecision ),
821
821
QString::number ( transformedPoint.y (), ' f' , displayPrecision ),
822
822
identifier ), mMenu );
@@ -843,7 +843,7 @@ void QgsMapCanvas::showContextMenu( QgsMapMouseEvent *event )
843
843
}
844
844
};
845
845
846
- addCoordinateFormat ( tr ( " %1 - Map CRS" ).arg ( mSettings .destinationCrs ().userFriendlyIdentifier ( QgsCoordinateReferenceSystem::ShortString ) ), mSettings .destinationCrs () );
846
+ addCoordinateFormat ( tr ( " Map CRS — %1 " ).arg ( mSettings .destinationCrs ().userFriendlyIdentifier ( QgsCoordinateReferenceSystem::ShortString ) ), mSettings .destinationCrs () );
847
847
if ( mSettings .destinationCrs () != QgsCoordinateReferenceSystem ( QStringLiteral ( " EPSG:4326" ) ) )
848
848
addCoordinateFormat ( tr ( " WGS84" ), QgsCoordinateReferenceSystem ( QStringLiteral ( " EPSG:4326" ) ) );
849
849
@@ -854,7 +854,7 @@ void QgsMapCanvas::showContextMenu( QgsMapMouseEvent *event )
854
854
QgsCoordinateReferenceSystem customCrs ( customCrsString );
855
855
if ( customCrs != mSettings .destinationCrs () && customCrs != QgsCoordinateReferenceSystem ( QStringLiteral ( " EPSG:4326" ) ) )
856
856
{
857
- addCoordinateFormat ( tr ( " %1 - Custom CRS " ). arg ( customCrs.userFriendlyIdentifier ( QgsCoordinateReferenceSystem::ShortString ) ), customCrs );
857
+ addCoordinateFormat ( customCrs.userFriendlyIdentifier ( QgsCoordinateReferenceSystem::ShortString ), customCrs );
858
858
}
859
859
}
860
860
copyCoordinateMenu->addSeparator ();
0 commit comments