fix CJK fonts

This commit is contained in:
pa
2025-09-14 15:21:44 +09:00
committed by Natsumi
parent b0f0896dae
commit 875459689f
27 changed files with 330 additions and 263 deletions

View File

@@ -217,6 +217,11 @@ function getNextDialogIndex() {
return z + 1;
}
function changeHtmlLangAttribute(language) {
const htmlElement = document.documentElement;
htmlElement.setAttribute('lang', language);
}
export {
systemIsDarkMode,
changeAppDarkStyle,
@@ -226,5 +231,6 @@ export {
refreshCustomScript,
HueToHex,
HSVtoRGB,
getNextDialogIndex
getNextDialogIndex,
changeHtmlLangAttribute
};