From e4cd692e9197bcf40aa4eac5736b4f524175eb45 Mon Sep 17 00:00:00 2001 From: Lukas W Date: Fri, 28 Feb 2014 18:06:32 +0100 Subject: [PATCH] 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'. --- src/gui/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/MainWindow.cpp b/src/gui/MainWindow.cpp index c3aec5ff9..2fe92f918 100644 --- a/src/gui/MainWindow.cpp +++ b/src/gui/MainWindow.cpp @@ -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 != "" )