Skip to content

Commit

Permalink
Show more user friendly CRS in vector props dialog
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14674 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Nov 14, 2010
1 parent 9774a6e commit 9f91c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsvectorlayerproperties.cpp
Expand Up @@ -124,7 +124,7 @@ QgsVectorLayerProperties::QgsVectorLayerProperties(

updateButtons();

leSpatialRefSys->setText( layer->srs().toProj4() );
leSpatialRefSys->setText( "EPSG:" + QString::number( layer->crs().epsg() ) + " - " + layer->srs().description() );
leSpatialRefSys->setCursorPosition( 0 );

leEditForm->setText( layer->editForm() );
Expand Down Expand Up @@ -980,7 +980,7 @@ void QgsVectorLayerProperties::on_pbnChangeSpatialRefSys_clicked()
}
delete mySelector;

leSpatialRefSys->setText( layer->srs().toProj4() );
leSpatialRefSys->setText( "EPSG:" + QString::number( layer->crs().epsg() ) + " - " + layer->srs().description() );
leSpatialRefSys->setCursorPosition( 0 );
}

Expand Down

0 comments on commit 9f91c54

Please sign in to comment.