Skip to content

Commit

Permalink
Don't try to update joined attributes during form initialization
Browse files Browse the repository at this point in the history
Refs #44768
  • Loading branch information
nyalldawson authored and github-actions[bot] committed Aug 23, 2021
1 parent cb7cecf commit a5c2aa5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/qgsattributeform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,8 @@ void QgsAttributeForm::onAttributeChanged( const QVariant &value, const QVariant

signalEmitted = true;

updateJoinedFields( *eww );
if ( mValuesInitialized )
updateJoinedFields( *eww );

break;
}
Expand Down

0 comments on commit a5c2aa5

Please sign in to comment.