1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-23 15:50:05 +02:00
This commit is contained in:
v.audacity 2012-08-02 00:06:05 +00:00
parent 7aef35adfd
commit c41872498f
2 changed files with 2 additions and 2 deletions

View File

@ -1018,7 +1018,7 @@ AudacityProject::~AudacityProject()
void AudacityProject::UpdatePrefsVariables()
{
gPrefs->Read(wxT("/AudioFiles/ShowId3Dialog"), &mShowId3Dialog, false);
gPrefs->Read(wxT("/AudioFiles/ShowId3Dialog"), &mShowId3Dialog, true);
gPrefs->Read(wxT("/AudioFiles/NormalizeOnLoad"),&mNormalizeOnLoad, false);
#ifdef CLEANSPEECH

View File

@ -80,7 +80,7 @@ void ImportExportPrefs::PopulateOrExchange(ShuttleGui & S)
S.TieCheckBox(_("S&how Metadata Editor prior to export step"),
wxT("/AudioFiles/ShowId3Dialog"),
false);
true);
S.AddFixedText(_("Note: Export quality options can be chosen by clicking the Options\nbutton in the Export dialog."));
}
S.EndStatic();