1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-17 00:30:25 +02:00

Bug2594: Fix Save Backup...

... It broke at 16b249a
This commit is contained in:
Paul Licameli 2020-11-24 16:17:07 -05:00
parent 7e1e339f72
commit 6a10177404

View File

@ -2149,7 +2149,8 @@ bool ProjectFileIO::SaveProject(
bool ProjectFileIO::SaveCopy(const FilePath& fileName)
{
return CopyTo(fileName, XO("Backing up project"), false, true);
return CopyTo(fileName, XO("Backing up project"), false, true,
{&TrackList::Get(mProject)});
}
bool ProjectFileIO::OpenProject()