mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 15:50:16 +02:00
Merge branch 'main' into develop/jellyseerr
This commit is contained in:
commit
171e066637
2 changed files with 5 additions and 7 deletions
|
|
@ -110,13 +110,11 @@ fun SeriesOverviewContent(
|
|||
|
||||
val seasonStr = stringResource(R.string.tv_season)
|
||||
val tabs =
|
||||
remember(seasons) {
|
||||
seasons.mapNotNull {
|
||||
it?.name
|
||||
?: it?.data?.indexNumber?.let { "$seasonStr $it" }
|
||||
seasons.map { season ->
|
||||
season?.name
|
||||
?: season?.data?.indexNumber?.let { "$seasonStr $it" }
|
||||
?: ""
|
||||
}
|
||||
}
|
||||
val focusRequesters = remember(seasons) { List(seasons.size) { FocusRequester() } }
|
||||
|
||||
Box(
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ fun PlaybackDialog(
|
|||
// }
|
||||
},
|
||||
onSelectChoice = { _, choice ->
|
||||
onPlaybackActionClick.invoke(PlaybackAction.ToggleCaptions(choice.index))
|
||||
onPlaybackActionClick.invoke(PlaybackAction.ToggleAudio(choice.index))
|
||||
},
|
||||
gravity = Gravity.END,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue