Skip to content

Commit e06e95c

Browse files
author
Hugo Mercier
authored
Merge pull request #6413 from mhugo/master
Fix call to representValue in identifydialog (refs #17175)
2 parents 5eb3e6b + 5e70e96 commit e06e95c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgsidentifyresultsdialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ void QgsIdentifyResultsDialog::addFeature( QgsVectorLayer *vlayer, const QgsFeat
610610

611611
QString value = fields.at( i ).displayString( attrs.at( i ) );
612612
const QgsEditorWidgetSetup setup = QgsGui::editorWidgetRegistry()->findBest( vlayer, fields.at( i ).name() );
613-
QString value2 = representValue( vlayer, setup, fields.at( i ).name(), value );
613+
QString value2 = representValue( vlayer, setup, fields.at( i ).name(), attrs.at( i ) );
614614

615615
tblResults->setRowCount( j + 1 );
616616

0 commit comments

Comments
 (0)