Skip to content
Permalink
Browse files
fix identify result update after attribute change
git-svn-id: http://svn.osgeo.org/qgis/trunk@14859 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Dec 7, 2010
1 parent 374aa24 commit 8d80538
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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;

0 comments on commit 8d80538

Please sign in to comment.