We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 810773a commit c9b85b0Copy full SHA for c9b85b0
src/app/qgisapp.cpp
@@ -8088,7 +8088,9 @@ void QgisApp::destinationSrsChanged()
8088
{
8089
// save this information to project
8090
long srsid = mMapCanvas->mapRenderer()->destinationCrs().srsid();
8091
+ QString srs = mMapCanvas->mapRenderer()->destinationCrs().authid();
8092
QgsProject::instance()->writeEntry( "SpatialRefSys", "/ProjectCRSID", ( int )srsid );
8093
+ QgsProject::instance()->writeEntry( "SpatialRefSys", "/ProjectCrs", srs );
8094
updateCRSStatusBar();
8095
}
8096
0 commit comments