1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 16:39:30 +02:00
This commit is contained in:
v.audacity 2012-08-01 05:53:08 +00:00
parent cff4cd3c2d
commit 9c2e9e50e8
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, true);
gPrefs->Read(wxT("/AudioFiles/ShowId3Dialog"), &mShowId3Dialog, false);
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"),
true);
false);
S.AddFixedText(_("Note: Export quality options can be chosen by clicking the Options\nbutton in the Export dialog."));
}
S.EndStatic();