Skip to content

Commit

Permalink
Merge pull request #6801 from m-kuhn/relRefIdInsteadOfName
Browse files Browse the repository at this point in the history
Use relation id instead of name for nesting detection
  • Loading branch information
m-kuhn committed Apr 16, 2018
2 parents 5e33d7d + 435d807 commit e93c97c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -76,7 +76,7 @@ void QgsRelationReferenceWidgetWrapper::initWidget( QWidget *editor )
// If this widget is already embedded by the same relation, reduce functionality
do
{
if ( ctx->relation().name() == relation.name() )
if ( ctx->relation().id() == relation.id() )
{
mWidget->setEmbedForm( false );
mWidget->setReadOnlySelector( true );
Expand Down

0 comments on commit e93c97c

Please sign in to comment.