Default recall card display to beautify only

This commit is contained in:
Hao19911125
2026-04-03 14:54:44 +08:00
parent d91aa95069
commit a9704789a4
3 changed files with 6 additions and 6 deletions

View File

@@ -1539,7 +1539,7 @@ function _refreshConfigTab() {
);
_setInputValue(
"bme-setting-recall-card-user-input-display-mode",
settings.recallCardUserInputDisplayMode ?? "mirror",
settings.recallCardUserInputDisplayMode ?? "beautify_only",
);
_setInputValue("bme-setting-extract-every", settings.extractEvery ?? 1);
@@ -1829,7 +1829,7 @@ function _bindConfigControls() {
recallCardUserInputDisplayModeEl.addEventListener("change", () => {
_patchSettings({
recallCardUserInputDisplayMode:
recallCardUserInputDisplayModeEl.value || "mirror",
recallCardUserInputDisplayModeEl.value || "beautify_only",
});
});
recallCardUserInputDisplayModeEl.dataset.bmeBound = "true";