1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-16 19:26:36 +01: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

@@ -338,7 +338,7 @@ ProgressResult ExportOGG::Export(AudacityProject *project,
if ( outFile.Write(page.header, page.header_len).GetLastError() ||
outFile.Write(page.body, page.body_len).GetLastError()) {
// TODO: more precise message
ShowDiskFullExportErrorDialog();
ShowDiskFullExportErrorDialog(fName);
return ProgressResult::Cancelled;
}