Skip to content

Commit

Permalink
qgz set as the default format
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere authored and nyalldawson committed May 29, 2018
1 parent 6002ce0 commit 04e779a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgisapp.cpp
Expand Up @@ -5730,7 +5730,7 @@ bool QgisApp::fileSave()
this,
tr( "Choose a QGIS project file" ),
lastUsedDir + '/' + QgsProject::instance()->title(),
qgsExt + ";;" + zipExt, &filter );
zipExt + ";;" + qgsExt, &filter );
if ( path.isEmpty() )
return false;

Expand Down Expand Up @@ -5816,7 +5816,7 @@ void QgisApp::fileSaveAs()
QString path = QFileDialog::getSaveFileName( this,
tr( "Save Project As" ),
lastUsedDir + '/' + QgsProject::instance()->title(),
qgsExt + ";;" + zipExt, &filter );
zipExt + ";;" + qgsExt, &filter );
if ( path.isEmpty() )
return;

Expand Down

0 comments on commit 04e779a

Please sign in to comment.