From 602e21358cd85e013dafdf3644511e824162da13 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Tue, 16 Jun 2015 00:03:03 -0500 Subject: [PATCH] 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. --- src/Project.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Project.cpp b/src/Project.cpp index 0dd39ca0d..791d5e456 100644 --- a/src/Project.cpp +++ b/src/Project.cpp @@ -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;