We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 49730ed commit 8ce1fb2Copy full SHA for 8ce1fb2
src/app/qgisapp.cpp
@@ -5235,12 +5235,10 @@ void QgisApp::fileOpen()
5235
// Retrieve last used project dir from persistent settings
5236
QgsSettings settings;
5237
QString lastUsedDir = settings.value( QStringLiteral( "UI/lastProjectDir" ), QDir::homePath() ).toString();
5238
- const QString qgs_ext = tr( "QGIS files" ) + " (*.qgs *.QGS)";
5239
- const QString zip_ext = tr( "QGZ files" ) + " (*.qgz)";
5240
QString fullPath = QFileDialog::getOpenFileName( this,
5241
tr( "Choose a QGIS project file to open" ),
5242
lastUsedDir,
5243
- qgs_ext + ";;" + zip_ext );
+ tr( "QGIS files" ) + " (*.qgs *.qgz *.QGS)" );
5244
if ( fullPath.isNull() )
5245
{
5246
return;
0 commit comments