mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-01 00:05:25 -04:00
Fix bug #3114
git-svn-id: http://svn.osgeo.org/qgis/trunk@14444 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
6dac94660e
commit
fb48cc0cc3
@ -1610,7 +1610,7 @@ bool QgsVectorLayer::nextFeature( QgsFeature &f )
|
||||
|
||||
for ( QgsFeatureList::iterator it = mAddedFeatures.begin(); it != mAddedFeatures.end(); it++ )
|
||||
{
|
||||
if ( fid != it->id() )
|
||||
if ( fid == it->id() )
|
||||
{
|
||||
found = true;
|
||||
f.setAttributeMap( it->attributeMap() );
|
||||
|
Loading…
x
Reference in New Issue
Block a user