Skip to content

Commit

Permalink
Use even more forceful language to dissuade users from creating
Browse files Browse the repository at this point in the history
custom projections using Proj strings

Refs #37204
  • Loading branch information
nyalldawson committed Jun 15, 2020
1 parent 81d2e56 commit 7ec4968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgscustomprojectiondialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ QgsCustomProjectionDialog::QgsCustomProjectionDialog( QWidget *parent, Qt::Windo
leNameList->setSelectionMode( QAbstractItemView::ExtendedSelection );

mFormatComboBox->addItem( tr( "WKT (Recommended)" ), static_cast< int >( QgsCoordinateReferenceSystem::FormatWkt ) );
mFormatComboBox->addItem( tr( "Proj String" ), static_cast< int >( QgsCoordinateReferenceSystem::FormatProj ) );
mFormatComboBox->addItem( tr( "Proj String (Legacy — Not Recommended)" ), static_cast< int >( QgsCoordinateReferenceSystem::FormatProj ) );
mFormatComboBox->setCurrentIndex( mFormatComboBox->findData( static_cast< int >( QgsCoordinateReferenceSystem::FormatWkt ) ) );

// user database is created at QGIS startup in QgisApp::createDB
Expand Down

0 comments on commit 7ec4968

Please sign in to comment.