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

Bug 2515 - Exporting to a disk with insufficient space gives messages that are not user-friendly or helpful

This commit is contained in:
James Crook
2020-09-21 15:11:39 +01:00
parent 0b633c564a
commit 6149b57dc0
7 changed files with 27 additions and 17 deletions

View File

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