Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change browser context menu item text for adding layer to 'Add select… (
#4459)

* Change browser context menu item text for adding layer to 'Add selected layer(s) to canvas'

* Use title case for Add Selected Layer(s) to Canvas browser context menu text
  • Loading branch information
timlinux committed May 14, 2017
1 parent 24e06a4 commit 7af73b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsbrowserdockwidget.cpp
Expand Up @@ -405,7 +405,7 @@ void QgsBrowserDockWidget::showContextMenu( QPoint pt )
}
else if ( item->type() == QgsDataItem::Layer )
{
menu->addAction( tr( "Add Selected Layer(s)" ), this, SLOT( addSelectedLayers() ) );
menu->addAction( tr( "Add Selected Layer(s) to Canvas" ), this, SLOT( addSelectedLayers() ) );
menu->addAction( tr( "Properties..." ), this, SLOT( showProperties() ) );
}
else if ( item->type() == QgsDataItem::Favorites )
Expand Down

0 comments on commit 7af73b3

Please sign in to comment.