Skip to content

Commit

Permalink
Fix #9733 (empty attribute table if showing just selected / visible f…
Browse files Browse the repository at this point in the history
…eatures)
  • Loading branch information
wonder-sk committed Jun 10, 2014
1 parent f13f6ee commit f97fa90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsattributetablefiltermodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ void QgsAttributeTableFilterModel::generateListOfVisibleFeatures()

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

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

QgsFeature f;

Expand Down

0 comments on commit f97fa90

Please sign in to comment.