Skip to content

Commit

Permalink
[vectorlayer] Fix updateFeature() when an attribute's variant goes fr…
Browse files Browse the repository at this point in the history
…om null to default null value
  • Loading branch information
nirvn committed Apr 13, 2021
1 parent 3ee49a6 commit 623334a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/vector/qgsvectorlayer.cpp
Expand Up @@ -1072,7 +1072,7 @@ bool QgsVectorLayer::updateFeature( QgsFeature &updatedFeature, bool skipDefault

for ( int attr = 0; attr < fa.count(); ++attr )
{
if ( fa.at( attr ) != ca.at( attr ) )
if ( !qgsVariantEqual( fa.at( attr ), ca.at( attr ) ) )
{
if ( changeAttributeValue( updatedFeature.id(), attr, fa.at( attr ), ca.at( attr ), true ) )
{
Expand Down

0 comments on commit 623334a

Please sign in to comment.