1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-27 15:53:49 +01:00

Lower DoReloadPreferences into PrefsDialog.cpp

This commit is contained in:
Paul Licameli
2019-06-21 22:54:34 -04:00
parent 8db51416bc
commit b6077fd3cd
6 changed files with 44 additions and 44 deletions

View File

@@ -14,7 +14,6 @@
#include "../Dependencies.h"
#include "../FileNames.h"
#include "../HelpText.h"
#include "../Menus.h"
#include "../Prefs.h"
#include "../Project.h"
#include "../ProjectSelectionManager.h"
@@ -23,6 +22,7 @@
#include "../Theme.h"
#include "../commands/CommandContext.h"
#include "../commands/CommandManager.h"
#include "../prefs/PrefsDialog.h"
#include "../widgets/AudacityMessageBox.h"
#include "../widgets/HelpSystem.h"
#include "../widgets/LinkingHtmlWindow.h"
@@ -261,7 +261,7 @@ void QuickFixDialog::OnFix(wxCommandEvent &event)
// This is overkill (aka slow), as all preferences are reloaded and all
// toolbars recreated.
// Overkill probably doesn't matter, as this command is infrequently used.
EditActions::DoReloadPreferences( *pProject );
DoReloadPreferences( *pProject );
}
}