1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-05 15:09:08 +02:00

Do not cause duplicate ".aup" extensions to be added on OSX

The real problem is that there's a lot of code that is looking
for the ".aup" extension, but it's not using case insensitive
comparisons.

But that'll have to get resolved ... later.
This commit is contained in:
Leland Lucius 2015-06-16 00:03:03 -05:00
parent de1fe0ae37
commit 602e21358c

View File

@ -3846,7 +3846,7 @@ For an audio file that will open in other apps, use 'Export'.\n"),
// for overwrite ourselves later, and we disallow it.
// We disallow overwrite because we would have to delete the many
// smaller files too, or prompt to move them.
wxFD_SAVE | wxRESIZE_BORDER, this);
wxFD_SAVE | wxRESIZE_BORDER | FD_NO_ADD_EXTENSION, this);
if (fName == wxT(""))
return false;