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 d0d6959 commit e0a2267
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/qgisapp.cpp
Expand Up @@ -9850,6 +9850,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;
QgsProject::instance()->addMapLayers( myList );
bool ok;
Expand Down

0 comments on commit e0a2267

Please sign in to comment.