mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 06:10:31 +05:30
Merge pull request #2398 from Bnyro/master
place the chapter time stamps in front of the chapter name
This commit is contained in:
commit
91828959de
@ -1047,7 +1047,7 @@ class PlayerFragment : BaseFragment(), OnlinePlayerOptions {
|
||||
|
||||
// enable the chapters dialog in the player
|
||||
val titles = chapters.map { chapter ->
|
||||
"${chapter.title} (${chapter.start?.let { DateUtils.formatElapsedTime(it) }})"
|
||||
"(${chapter.start?.let { DateUtils.formatElapsedTime(it) }}) ${chapter.title}"
|
||||
}
|
||||
playerBinding.chapterLL.setOnClickListener {
|
||||
if (viewModel.isFullscreen.value!!) {
|
||||
|
Loading…
Reference in New Issue
Block a user