We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c64ad2 commit 0d6c2f0Copy full SHA for 0d6c2f0
src/core/qgsvectorlayercache.cpp
@@ -174,7 +174,7 @@ QgsVectorLayer* QgsVectorLayerCache::layer()
174
void QgsVectorLayerCache::requestCompleted( const QgsFeatureRequest& featureRequest, const QgsFeatureIds& fids )
175
{
176
// If a request is too large for the cache don't notify to prevent from indexing incomplete requests
177
- if ( fids.count() < mCache.size() )
+ if ( fids.count() <= mCache.size() )
178
179
Q_FOREACH ( QgsAbstractCacheIndex* idx, mCacheIndices )
180
0 commit comments