Skip to content

Commit

Permalink
Fixes mixdown prefs
Browse files Browse the repository at this point in the history
  • Loading branch information
crsib committed Feb 20, 2024
1 parent 671b14f commit 9230395
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/lib-cloud-audiocom/CloudSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ StringSetting CloudProjectsSavePath {
};

IntSetting MixdownGenerationFrequency {
"/cloud/audiocom/MixdownGenerationFrequency", 1
"/cloud/audiocom/MixdownGenerationFrequency", 5
};

IntSetting DaysToKeepFiles {
Expand Down
4 changes: 2 additions & 2 deletions modules/mod-cloud-audiocom/ui/AudioComPrefsPanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ class AudioComPrefsPanel final : public PrefsPanel

bool Commit() override
{
MixdownGenerationFrequency.Write(mMixdownPrefsPanel->GetFrequency());

ShuttleGui S(this, eIsSavingToPrefs);
PopulateOrExchange(S);

MixdownGenerationFrequency.Write(mMixdownPrefsPanel->GetFrequency());

CloudProjectsSavePath.Invalidate();
sync::ShowCloudSyncDialog.Invalidate();
DaysToKeepFiles.Invalidate();
Expand Down

0 comments on commit 9230395

Please sign in to comment.