mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
fix CJK fonts
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
@@ -3,7 +3,6 @@ export * from './base/devtool';
|
||||
export * from './base/format';
|
||||
export * from './base/date';
|
||||
export * from './base/string';
|
||||
export * from './base/ui';
|
||||
export * from './avatar';
|
||||
export * from './chart';
|
||||
export * from './common';
|
||||
|
||||
Reference in New Issue
Block a user