Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing ellipsis to project storage items
  • Loading branch information
nyalldawson committed May 11, 2018
1 parent 9846941 commit ad18e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -13613,7 +13613,7 @@ void QgisApp::populateProjectStorageMenu( QMenu *menu, bool saving )
QString name = storage->visibleName();
if ( name.isEmpty() )
continue;
QAction *action = menu->addAction( name );
QAction *action = menu->addAction( QStringLiteral( "%1…" ).arg( name ) );
if ( saving )
{
connect( action, &QAction::triggered, [this, storage]
Expand Down

0 comments on commit ad18e04

Please sign in to comment.