Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix identify result update after attribute change
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14859 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Dec 7, 2010
1 parent 1acd564 commit 5690f5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsidentifyresults.cpp
Expand Up @@ -774,7 +774,7 @@ void QgsIdentifyResults::attributeValueChanged( int fid, int idx, const QVariant
if ( item->childCount() > 0 )
continue;

if ( item->data( 0, Qt::UserRole ).toInt() == idx )
if ( item->data( 0, Qt::UserRole + 1 ).toInt() == idx )
{
item->setData( 1, Qt::DisplayRole, val );
return;
Expand Down

0 comments on commit 5690f5a

Please sign in to comment.