Skip to content

Commit e1a1627

Browse files
committed
Reversed erroneous change
1 parent d11fd92 commit e1a1627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsrasterprojector.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ void QgsRasterProjector::calc()
195195
}
196196
// What is the maximum reasonable size of transformatio matrix?
197197
// TODO: consider better when to break - ratio
198-
if ( mCPRows * mCPCols > 0.25 * mDestRows * mDestCols )
198+
if ( mCPRows * mCPCols > 0.0625 * mDestRows * mDestCols )
199199
{
200200
QgsDebugMsg( "Too large CP matrix" );
201201
mApproximate = false;

0 commit comments

Comments
 (0)