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 dd7fe96 commit 28f8f28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/qgsattributeform.cpp
Expand Up @@ -909,7 +909,8 @@ void QgsAttributeForm::onAttributeChanged( const QVariant &value, const QVariant

signalEmitted = true;

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

break;
}
Expand Down

0 comments on commit 28f8f28

Please sign in to comment.