Skip to content

Commit

Permalink
Fix corrupted text in Open From menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 30, 2018
1 parent e7da103 commit 69b590b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -13694,7 +13694,7 @@ void QgisApp::populateProjectStorageMenu( QMenu *menu, bool saving )
QString name = storage->visibleName();
if ( name.isEmpty() )
continue;
QAction *action = menu->addAction( QStringLiteral( "%1" ).arg( name ) );
QAction *action = menu->addAction( QStringLiteral( "%1" ).arg( name ) + QChar( 0x2026 ) ); // 0x2026 = ellipsis character
if ( saving )
{
connect( action, &QAction::triggered, [this, storage]
Expand Down

0 comments on commit 69b590b

Please sign in to comment.