From ac41f4586ed812f907d8c20db7ebc7839b5599a9 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Sat, 27 Jan 2024 09:34:05 +0100 Subject: [PATCH] Fix typo. --- source/website/sharingdialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/website/sharingdialog.js b/source/website/sharingdialog.js index 0feb5b04..7a7ed137 100644 --- a/source/website/sharingdialog.js +++ b/source/website/sharingdialog.js @@ -95,7 +95,7 @@ export function ShowSharingDialog (fileList, settings, viewer) HandleEvent ('model_shared', 'embedding_code'); return GetEmbeddingCode (modelFiles, useCurrentSettings, settings, viewer); }); - AddCheckboxLine (optionsSection, Loc ('Use customized settings', 'embed_current_settings'), (checked) => { + AddCheckboxLine (optionsSection, Loc ('Use customized settings'), 'embed_current_settings', (checked) => { useCurrentSettings = checked; embeddingCodeInput.value = GetEmbeddingCode (modelFiles, useCurrentSettings, settings, viewer); });