Skip to content

Commit

Permalink
vector layer: also consider changed geometries, when there's no selec…
Browse files Browse the repository at this point in the history
…t rectangle
  • Loading branch information
jef-n committed May 29, 2012
1 parent 720cfce commit 23b40de
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/qgsvectorlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1828,6 +1828,11 @@ bool QgsVectorLayer::nextFeature( QgsFeature &f )
{
updateFeatureAttributes( f ); //check joined attributes / changed attributes
}
if ( mEditable && mFetchGeometry )
{
updateFeatureGeometry( f );
}

return true;
}

Expand Down

0 comments on commit 23b40de

Please sign in to comment.