Skip to content

Commit aadfa8c

Browse files
committedMay 7, 2011
Merge pull request #5 from timlinux/release-1_7_0
Radims fix for raster otf of wms render issues - and Guiseppi's gdal warp fix

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsrasterprojector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ void QgsRasterProjector::calcSrcExtent()
130130
mSrcExtent = QgsRectangle( myPoint.x(), myPoint.y(), myPoint.x(), myPoint.y() );
131131
for ( int i = 0; i < mCPRows; i++ )
132132
{
133-
for ( int j = 1; j < mCPCols - 1; j++ )
133+
for ( int j = 0; j < mCPCols ; j++ )
134134
{
135135
myPoint = mCPMatrix[i][j];
136136
mSrcExtent.combineExtentWith( myPoint.x(), myPoint.y() );

0 commit comments

Comments
 (0)
Please sign in to comment.