mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 09:01:15 +02:00
Make TypeToCreateLabel off by default.
Following a lengthen discussion on the quality list, consensus is this option should always have been off by default. The main argument for not changing it now was that 'on' is what users have come to expect.
This commit is contained in:
@@ -346,7 +346,7 @@ void OnPasteNewLabel(const CommandContext &context)
|
||||
void OnToggleTypeToCreateLabel(const CommandContext &WXUNUSED(context) )
|
||||
{
|
||||
bool typeToCreateLabel;
|
||||
gPrefs->Read(wxT("/GUI/TypeToCreateLabel"), &typeToCreateLabel, true);
|
||||
gPrefs->Read(wxT("/GUI/TypeToCreateLabel"), &typeToCreateLabel, false);
|
||||
gPrefs->Write(wxT("/GUI/TypeToCreateLabel"), !typeToCreateLabel);
|
||||
gPrefs->Flush();
|
||||
MenuManager::ModifyAllProjectToolbarMenus();
|
||||
|
||||
Reference in New Issue
Block a user