SaveDialog: Switch order of mmp and mmpz

Fixes #386.
When selecting the filter in the file save dialog, the file name used to change to *.mmp. As this is not desired, this commit changes it to '.mmpz'.
This commit is contained in:
Lukas W
2014-02-28 18:06:32 +01:00
parent b511344bad
commit e4cd692e91

View File

@@ -753,7 +753,7 @@ bool MainWindow::saveProject( void )
bool MainWindow::saveProjectAs( void )
{
VersionedSaveDialog sfd( this, tr( "Save project" ), "",
tr( "LMMS Project (*.mmp *.mmpz);;"
tr( "LMMS Project (*.mmpz *.mmp);;"
"LMMS Project Template (*.mpt)" ) );
QString f = engine::getSong()->projectFileName();
if( f != "" )