Skip to content

Commit f97fa90

Browse files
committedJun 10, 2014
Fix #9733 (empty attribute table if showing just selected / visible features)
1 parent f13f6ee commit f97fa90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/attributetable/qgsattributetablefiltermodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ void QgsAttributeTableFilterModel::generateListOfVisibleFeatures()
271271

272272
renderer->startRender( renderContext, layer()->pendingFields() );
273273

274-
QgsFeatureIterator features = masterModel()->layerCache()->getFeatures( QgsFeatureRequest().setFlags( QgsFeatureRequest::NoGeometry ).setFilterRect( rect ) );
274+
QgsFeatureIterator features = masterModel()->layerCache()->getFeatures( QgsFeatureRequest().setFilterRect( rect ) );
275275

276276
QgsFeature f;
277277

0 commit comments

Comments
 (0)
Please sign in to comment.