Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -87,7 +87,7 @@ fun LyricPriorityLogic() {
.height(48.dp),
contentAlignment = Alignment.CenterStart
) {
Text(
TextPrimary(
text = stringResource(lyricOrder.stringRes),
fontSize = 16.sp,
textAlign = TextAlign.Center
Expand Down
Loading