Fix settings not being saved correctly

This commit is contained in:
toasted-nutbread 2019-11-12 20:01:55 -05:00
parent d9b4404075
commit 72e7a42c8d
3 changed files with 8 additions and 8 deletions

View File

@ -341,7 +341,7 @@ async function dictSettingsInitialize() {
document.querySelector('#dict-extra-template'),
options.dictionaries
);
dictionaryUI.save = () => apiOptionsSave();
dictionaryUI.save = () => settingsSaveOptions();
document.querySelector('#dict-purge-button').addEventListener('click', (e) => onDictionaryPurgeButtonClick(e), false);
document.querySelector('#dict-purge-confirm').addEventListener('click', (e) => onDictionaryPurge(e), false);
@ -397,7 +397,7 @@ async function updateMainDictionarySelect(options, dictionaries) {
if (options.general.mainDictionary !== value) {
options.general.mainDictionary = value;
apiOptionsSave();
settingsSaveOptions();
}
}
@ -406,7 +406,7 @@ async function onDictionaryMainChanged(e) {
const optionsContext = getOptionsContext();
const options = await apiOptionsGet(optionsContext);
options.general.mainDictionary = value;
apiOptionsSave();
settingsSaveOptions();
}

View File

@ -95,7 +95,7 @@ async function profileFormWrite(optionsFull) {
$('#profile-add-condition-group')
);
profileConditionsContainer.save = () => {
apiOptionsSave();
settingsSaveOptions();
conditionsClearCaches(profileConditionsDescriptor);
};
profileConditionsContainer.isolate = utilBackgroundIsolate;
@ -166,7 +166,7 @@ async function onProfileOptionsChanged(e) {
const optionsFull = await apiOptionsGetFull();
await profileFormRead(optionsFull);
await apiOptionsSave();
await settingsSaveOptions();
}
async function onTargetProfileChanged() {
@ -188,7 +188,7 @@ async function onProfileAdd() {
optionsFull.profiles.push(profile);
currentProfileIndex = optionsFull.profiles.length - 1;
await profileOptionsUpdateTarget(optionsFull);
await apiOptionsSave();
await settingsSaveOptions();
}
async function onProfileRemove(e) {
@ -226,7 +226,7 @@ async function onProfileRemoveConfirm() {
}
await profileOptionsUpdateTarget(optionsFull);
await apiOptionsSave();
await settingsSaveOptions();
}
function onProfileNameChanged() {

View File

@ -318,7 +318,7 @@ async function audioSettingsInitialize() {
const optionsContext = getOptionsContext();
const options = await apiOptionsGet(optionsContext);
audioSourceUI = new AudioSourceUI.Container(options.audio.sources, $('.audio-source-list'), $('.audio-source-add'));
audioSourceUI.save = () => apiOptionsSave();
audioSourceUI.save = () => settingsSaveOptions();
textToSpeechInitialize();
}