From 543564e09776113b3795d1670a7e665e1bd260b9 Mon Sep 17 00:00:00 2001 From: qjzcj2008 Date: Sun, 29 Mar 2026 03:26:25 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E6=AD=8C=E8=AF=8D=E9=A1=BA?= =?UTF-8?q?=E5=BA=8F=E9=80=89=E5=8D=95=E6=96=87=E5=AD=97=E7=BB=98=E5=88=B6?= =?UTF-8?q?=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change Text to TextPrimary in LyricPriorityLogic,使其在黑暗模式下的绘制方式符合黑暗模式配色 --- .../ui/screen/setting/logic/lyric/LyricPriorityLogic.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/remix/myplayer/ui/screen/setting/logic/lyric/LyricPriorityLogic.kt b/app/src/main/java/remix/myplayer/ui/screen/setting/logic/lyric/LyricPriorityLogic.kt index 741650ac..1d51d166 100644 --- a/app/src/main/java/remix/myplayer/ui/screen/setting/logic/lyric/LyricPriorityLogic.kt +++ b/app/src/main/java/remix/myplayer/ui/screen/setting/logic/lyric/LyricPriorityLogic.kt @@ -8,7 +8,6 @@ import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.items import androidx.compose.foundation.lazy.rememberLazyListState import androidx.compose.material3.Icon -import androidx.compose.material3.Text import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateOf @@ -31,6 +30,7 @@ import remix.myplayer.ui.dialog.rememberDialogState import remix.myplayer.ui.nav.MessageNotifier import remix.myplayer.ui.screen.setting.NormalPreference import remix.myplayer.ui.theme.LocalTheme +import remix.myplayer.ui.widget.common.TextPrimary import remix.myplayer.util.Util import remix.myplayer.util.ext.ShowLyricTipDialog import remix.myplayer.viewmodel.settingViewModel @@ -87,7 +87,7 @@ fun LyricPriorityLogic() { .height(48.dp), contentAlignment = Alignment.CenterStart ) { - Text( + TextPrimary( text = stringResource(lyricOrder.stringRes), fontSize = 16.sp, textAlign = TextAlign.Center