Skip to content

Commit d77a33d

Browse files
committedJun 7, 2016
Partially revert d984148
Undo the maximum tile size changes as these were reverted from downstream due to WMS layer regressions
1 parent 94e1d5e commit d77a33d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎src/core/raster/qgsrasteriterator.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@
1717
#include "qgsrasterprojector.h"
1818
#include "qgsrasterviewport.h"
1919

20-
QgsRasterIterator::QgsRasterIterator( QgsRasterInterface* input ): mInput( input ),
21-
mMaximumTileWidth( 256 ), mMaximumTileHeight( 256 )
20+
QgsRasterIterator::QgsRasterIterator( QgsRasterInterface* input )
21+
: mInput( input )
22+
, mMaximumTileWidth( 2000 )
23+
, mMaximumTileHeight( 2000 )
2224
{
2325
}
2426

1 commit comments

Comments
 (1)

nirvn commented on Jun 7, 2016

@nirvn
Contributor

It was good while it lasted ;)

Please sign in to comment.