Skip to content

Commit e5499d0

Browse files
committed
fix datum transform dialog shown when option is disabled
1 parent 48e6ec5 commit e5499d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgisapp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12603,7 +12603,7 @@ bool QgisApp::askUserForDatumTransform( const QgsCoordinateReferenceSystem &sour
1260312603
{
1260412604
ok = false;
1260512605
}
12606-
if ( dlg.exec() )
12606+
else if ( dlg.exec() )
1260712607
{
1260812608
QPair< QPair<QgsCoordinateReferenceSystem, int>, QPair<QgsCoordinateReferenceSystem, int > > dt = dlg.selectedDatumTransforms();
1260912609
QgsCoordinateTransformContext context = QgsProject::instance()->transformContext();

0 commit comments

Comments
 (0)