Skip to content
Permalink
Browse files
Merge pull request #6 from timlinux/master
Radims fix for raster otf of wms render issues
  • Loading branch information
timlinux committed May 7, 2011
2 parents ad494d4 + 8fb20e0 commit 4aeb473
Showing 1 changed file with 1 addition and 1 deletion.
@@ -130,7 +130,7 @@ void QgsRasterProjector::calcSrcExtent()
mSrcExtent = QgsRectangle( myPoint.x(), myPoint.y(), myPoint.x(), myPoint.y() );
for ( int i = 0; i < mCPRows; i++ )
{
for ( int j = 1; j < mCPCols - 1; j++ )
for ( int j = 0; j < mCPCols ; j++ )
{
myPoint = mCPMatrix[i][j];
mSrcExtent.combineExtentWith( myPoint.x(), myPoint.y() );

0 comments on commit 4aeb473

Please sign in to comment.