Skip to content

Commit

Permalink
use more descriptive representation of the current layer CRS
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy authored and nyalldawson committed Aug 2, 2020
1 parent 92bf631 commit b1f0837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsapplayertreeviewmenuprovider.cpp
Expand Up @@ -344,7 +344,7 @@ QMenu *QgsAppLayerTreeViewMenuProvider::createContextMenu()
int i = 0;
for ( const QgsCoordinateReferenceSystem &crs : recentProjections )
{
QAction *action = menuSetCRS->addAction( crs.authid() );
QAction *action = menuSetCRS->addAction( crs.userFriendlyIdentifier() );
action->setProperty( "layerId", layer->id() );
action->setProperty( "crs", crs.authid() );
i++;
Expand Down

0 comments on commit b1f0837

Please sign in to comment.