Skip to content

Commit 69b590b

Browse files
committed
Fix corrupted text in Open From menu item
1 parent e7da103 commit 69b590b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgisapp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13694,7 +13694,7 @@ void QgisApp::populateProjectStorageMenu( QMenu *menu, bool saving )
1369413694
QString name = storage->visibleName();
1369513695
if ( name.isEmpty() )
1369613696
continue;
13697-
QAction *action = menu->addAction( QStringLiteral( "%1" ).arg( name ) );
13697+
QAction *action = menu->addAction( QStringLiteral( "%1" ).arg( name ) + QChar( 0x2026 ) ); // 0x2026 = ellipsis character
1369813698
if ( saving )
1369913699
{
1370013700
connect( action, &QAction::triggered, [this, storage]

0 commit comments

Comments
 (0)