Skip to content

Commit

Permalink
fix destination transform not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids authored and nyalldawson committed Dec 15, 2017
1 parent e0b3197 commit d18dac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsdatumtransformtablemodel.cpp
Expand Up @@ -90,7 +90,7 @@ QVariant QgsDatumTransformTableModel::data( const QModelIndex &index, int role )
case DestinationCrsColumn:
return destinationCrs;
case DestinationTransformColumn:
if ( sourceTransform != -1 )
if ( destinationTransform != -1 )
{
return QgsCoordinateTransform::datumTransformString( destinationTransform );
}
Expand Down

0 comments on commit d18dac0

Please sign in to comment.