show album section titles at the fastscroller popup too

This commit is contained in:
tibbi 2021-11-15 13:56:19 +01:00
parent e615abcac5
commit e2f6c4a7e7
2 changed files with 2 additions and 2 deletions

View file

@ -62,14 +62,13 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:92e67a1d01'
implementation 'com.github.SimpleMobileTools:Simple-Commons:06834c33a4'
implementation 'org.greenrobot:eventbus:3.2.0'
implementation 'androidx.media:media:1.4.2'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'com.airbnb.android:lottie:3.6.1'
implementation 'com.github.tibbi:RecyclerView-FastScroller:ea19354180'
kapt "androidx.room:room-compiler:2.3.0"
implementation "androidx.room:room-runtime:2.3.0"

View file

@ -231,6 +231,7 @@ class AlbumsTracksAdapter(
return when (listItem) {
is Track -> listItem.getBubbleText()
is Album -> listItem.title
is AlbumSection -> listItem.title
else -> ""
}
}