Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Do not show join configuration for auxiliary layer
- Loading branch information
Showing
with
5 additions
and
0 deletions.
-
+5
−0
src/app/qgsvectorlayerproperties.cpp
|
@@ -1260,6 +1260,11 @@ void QgsVectorLayerProperties::addJoinToTreeWidget( const QgsVectorLayerJoinInfo |
|
|
} |
|
|
|
|
|
joinItem->setText( 0, QStringLiteral( "Join layer" ) ); |
|
|
if ( mLayer->auxiliaryLayer() && mLayer->auxiliaryLayer()->id() == join.joinLayerId() ) |
|
|
{ |
|
|
return; |
|
|
} |
|
|
|
|
|
joinItem->setText( 1, joinLayer->name() ); |
|
|
|
|
|
QFont f = joinItem->font( 0 ); |
|
|