Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't try to update joined attributes during form initialization
Refs #44768
  • Loading branch information
nyalldawson committed Aug 23, 2021
1 parent 27bd854 commit adb5e30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/qgsattributeform.cpp
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 adb5e30

Please sign in to comment.