1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 07:40:23 +02:00

Bug 2097 - Mac: File list ignored at the command line

This commit is contained in:
Leland Lucius 2021-02-12 02:03:34 -06:00
parent 9940f1cf64
commit e178f63aec

View File

@ -1498,16 +1498,12 @@ bool AudacityApp::InitPart2()
QuitAudacity(true);
}
// As of wx3, there's no need to process the filename arguments as they
// will be sent via the MacOpenFile() method.
#if !defined(__WXMAC__)
for (size_t i = 0, cnt = parser->GetParamCount(); i < cnt; i++)
{
// PRL: Catch any exceptions, don't try this file again, continue to
// other files.
SafeMRUOpen(parser->GetParam(i));
}
#endif
}
} );