1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-16 15:41:11 +02:00

Export failure messages name the file, exactly as with FileException

This commit is contained in:
Paul Licameli
2020-12-06 14:20:02 -05:00
parent d225d24092
commit f07fd5d8bc
9 changed files with 20 additions and 18 deletions

View File

@@ -342,7 +342,7 @@ ProgressResult ExportMP2::Export(AudacityProject *project,
if ( outFile.Write(mp2Buffer.get(), mp2BufferNumBytes).GetLastError() ) {
// TODO: more precise message
ShowDiskFullExportErrorDialog();
ShowDiskFullExportErrorDialog(fName);
return ProgressResult::Cancelled;
}