Skip to content

Commit

Permalink
layer group node: copy properties of mutually exclusive groups (fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Oct 31, 2015
1 parent 2b17c22 commit d3ee16f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/layertree/qgslayertreegroup.cpp
Expand Up @@ -39,9 +39,9 @@ QgsLayerTreeGroup::QgsLayerTreeGroup( const QgsLayerTreeGroup& other )
: QgsLayerTreeNode( other )
, mName( other.mName )
, mChecked( other.mChecked )
, mChangingChildVisibility( false )
, mMutuallyExclusive( false )
, mMutuallyExclusiveChildIndex( -1 )
, mChangingChildVisibility( other.mChangingChildVisibility )
, mMutuallyExclusive( other.mMutuallyExclusive )
, mMutuallyExclusiveChildIndex( other.mMutuallyExclusiveChildIndex )
{
connect( this, SIGNAL( visibilityChanged( QgsLayerTreeNode*, Qt::CheckState ) ), this, SLOT( nodeVisibilityChanged( QgsLayerTreeNode* ) ) );
}
Expand Down

0 comments on commit d3ee16f

Please sign in to comment.