mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Show more user friendly CRS in vector props dialog
git-svn-id: http://svn.osgeo.org/qgis/trunk@14674 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
7efc989252
commit
3b8e430aed
@ -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() );
|
||||
@ -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 );
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user