1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 08:38:39 +02:00

Scrubbing toolbar defaults off.

This commit is contained in:
Paul Licameli 2016-05-02 13:00:27 -04:00
parent f346d40d79
commit 4b6e48a26c

View File

@ -1872,7 +1872,7 @@ namespace {
bool ReadScrubEnabledPref() bool ReadScrubEnabledPref()
{ {
bool result {}; bool result {};
gPrefs->Read(scrubEnabledPrefName, &result, true); gPrefs->Read(scrubEnabledPrefName, &result, false);
return result; return result;
} }