feat: 添加歌词字体粗细控制并修复 i18n 缺失

This commit is contained in:
algerkong
2025-12-20 14:09:57 +08:00
parent 85302c611a
commit 77bb06c0d6
8 changed files with 81 additions and 51 deletions
@@ -730,8 +730,8 @@ watch(
// 监听落雪音源列表变化
watch(
() => [lxMusicApis.value.length, activeLxApiId.value],
([apiCount, activeId]: [number, string | null]) => {
[() => lxMusicApis.value.length, () => activeLxApiId.value],
([apiCount, activeId]) => {
// 如果没有音源或没有激活的音源,自动从已选音源中移除 lxMusic
if (apiCount === 0 || !activeId) {
const index = selectedSources.value.indexOf('lxMusic');