Skip to content

Commit ad18e04

Browse files
committedMay 11, 2018
Add missing ellipsis to project storage items
1 parent 9846941 commit ad18e04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13613,7 +13613,7 @@ void QgisApp::populateProjectStorageMenu( QMenu *menu, bool saving )
1361313613
QString name = storage->visibleName();
1361413614
if ( name.isEmpty() )
1361513615
continue;
13616-
QAction *action = menu->addAction( name );
13616+
QAction *action = menu->addAction( QStringLiteral( "%1…" ).arg( name ) );
1361713617
if ( saving )
1361813618
{
1361913619
connect( action, &QAction::triggered, [this, storage]

0 commit comments

Comments
 (0)
Please sign in to comment.