Skip to content

Commit

Permalink
Partially revert d984148
Browse files Browse the repository at this point in the history
Undo the maximum tile size changes as these were reverted from
downstream due to WMS layer regressions
  • Loading branch information
nyalldawson committed Jun 7, 2016
1 parent 94e1d5e commit d77a33d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/core/raster/qgsrasteriterator.cpp
Expand Up @@ -17,8 +17,10 @@
#include "qgsrasterprojector.h"
#include "qgsrasterviewport.h"

QgsRasterIterator::QgsRasterIterator( QgsRasterInterface* input ): mInput( input ),
mMaximumTileWidth( 256 ), mMaximumTileHeight( 256 )
QgsRasterIterator::QgsRasterIterator( QgsRasterInterface* input )
: mInput( input )
, mMaximumTileWidth( 2000 )
, mMaximumTileHeight( 2000 )
{
}

Expand Down

1 comment on commit d77a33d

@nirvn
Copy link
Contributor

@nirvn nirvn commented on d77a33d Jun 7, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was good while it lasted ;)

Please sign in to comment.