mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 15:35:08 +01:00
Fix selection state appearance in clear database list (fixes #6526)
This commit is contained in:
parent
bf3bb8a378
commit
8c4ece4b2d
@ -24,11 +24,7 @@ data class ClearDatabaseSourceItem(val source: Source, private val mangaCount: I
|
||||
}
|
||||
|
||||
override fun bindViewHolder(adapter: FlexibleAdapter<IFlexible<RecyclerView.ViewHolder>>?, holder: Holder?, position: Int, payloads: MutableList<Any>?) {
|
||||
if (payloads.isNullOrEmpty()) {
|
||||
holder?.bind(source, mangaCount)
|
||||
} else {
|
||||
holder?.updateCheckbox()
|
||||
}
|
||||
holder?.bind(source, mangaCount)
|
||||
}
|
||||
|
||||
class Holder(view: View, adapter: FlexibleAdapter<*>) : FlexibleViewHolder(view, adapter) {
|
||||
@ -46,9 +42,7 @@ data class ClearDatabaseSourceItem(val source: Source, private val mangaCount: I
|
||||
source.icon() != null -> binding.thumbnail.setImageDrawable(source.icon())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun updateCheckbox() {
|
||||
binding.checkbox.isChecked = (bindingAdapter as FlexibleAdapter<*>).isSelected(bindingAdapterPosition)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user