Skip to content

Commit 2d79601

Browse files
committed
Do not show join configuration for auxiliary layer
1 parent c4dd1d4 commit 2d79601

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/app/qgsvectorlayerproperties.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -1260,6 +1260,11 @@ void QgsVectorLayerProperties::addJoinToTreeWidget( const QgsVectorLayerJoinInfo
12601260
}
12611261

12621262
joinItem->setText( 0, QStringLiteral( "Join layer" ) );
1263+
if ( mLayer->auxiliaryLayer() && mLayer->auxiliaryLayer()->id() == join.joinLayerId() )
1264+
{
1265+
return;
1266+
}
1267+
12631268
joinItem->setText( 1, joinLayer->name() );
12641269

12651270
QFont f = joinItem->font( 0 );

0 commit comments

Comments
 (0)