Skip to content

Commit 91e805f

Browse files
author
mhugent
committed
Fix bug #3114
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14444 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 1712754 commit 91e805f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsvectorlayer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@ bool QgsVectorLayer::nextFeature( QgsFeature &f )
16101610

16111611
for ( QgsFeatureList::iterator it = mAddedFeatures.begin(); it != mAddedFeatures.end(); it++ )
16121612
{
1613-
if ( fid != it->id() )
1613+
if ( fid == it->id() )
16141614
{
16151615
found = true;
16161616
f.setAttributeMap( it->attributeMap() );

0 commit comments

Comments
 (0)