Skip to content

Commit d18dac0

Browse files
3nidsnyalldawson
authored andcommittedDec 15, 2017
fix destination transform not showing
1 parent e0b3197 commit d18dac0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsdatumtransformtablemodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ QVariant QgsDatumTransformTableModel::data( const QModelIndex &index, int role )
9090
case DestinationCrsColumn:
9191
return destinationCrs;
9292
case DestinationTransformColumn:
93-
if ( sourceTransform != -1 )
93+
if ( destinationTransform != -1 )
9494
{
9595
return QgsCoordinateTransform::datumTransformString( destinationTransform );
9696
}

0 commit comments

Comments
 (0)
Please sign in to comment.