Skip to content

Commit

Permalink
homogenize layer naming when adding via browser and add vector dialog
Browse files Browse the repository at this point in the history
(fix #15510)
  • Loading branch information
alexbruy committed May 17, 2017
1 parent 14a8df4 commit c849bc8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/qgisapp.cpp
Expand Up @@ -9311,6 +9311,17 @@ QgsVectorLayer* QgisApp::addVectorLayer( const QString& vectorLayerPath, const Q
{
// Register this layer with the layers registry
QList<QgsMapLayer *> myList;

//set friendly name for datasources with only one layer
QStringList sublayers = layer->dataProvider()->subLayers();
QStringList elements = sublayers.at( 0 ).split( ':' );

Q_ASSERT( elements.size() >= 4 );
if ( layer->name() != elements.at( 1 ) )
{
layer->setName( QStringLiteral( "%1 %2 %3" ).arg( layer->name(), elements.at( 1 ), elements.at( 3 ) ) );
}

myList << layer;
QgsMapLayerRegistry::instance()->addMapLayers( myList );
bool ok;
Expand Down

0 comments on commit c849bc8

Please sign in to comment.