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

Don't display message if the EQ curves file is missing.

I can't think of a reason for having the message.  Either the curves
are there or they are not.
This commit is contained in:
Leland Lucius 2015-12-21 23:38:05 -06:00
parent 9dd79c9f80
commit 76436fc3fd

View File

@ -1391,14 +1391,17 @@ void EffectEqualization::LoadCurves(wxString fileName, bool append)
}
if( !fn.FileExists() )
{
wxString errorMessage;
errorMessage.Printf(_("EQCurves.xml and EQDefaultCurves.xml were not found on your system.\nPlease press 'help' to visit the download page.\n\nSave the curves at %s"), FileNames::DataDir().c_str());
ShowErrorDialog(mUIParent, _("EQCurves.xml and EQDefaultCurves.xml missing"),
errorMessage, wxT("http://wiki.audacityteam.org/wiki/EQCurvesDownload"), false);
// LLL: Is there really a need for an error message at all???
//wxString errorMessage;
//errorMessage.Printf(_("EQCurves.xml and EQDefaultCurves.xml were not found on your system.\nPlease press 'help' to visit the download page.\n\nSave the curves at %s"), FileNames::DataDir().c_str());
//ShowErrorDialog(mUIParent, _("EQCurves.xml and EQDefaultCurves.xml missing"),
// errorMessage, wxT("http://wiki.audacityteam.org/wiki/EQCurvesDownload"), false);
// Have another go at finding EQCurves.xml in the data dir, in case 'help' helped
fn = wxFileName( FileNames::DataDir(), wxT("EQDefaultCurves.xml") );
if( !fn.FileExists() )
{
mCurves.Clear();
mCurves.Add( _("unnamed") ); // we still need a default curve to use
return;
}