do not allow selecting the thread date time label

This commit is contained in:
tibbi 2020-04-03 23:36:53 +02:00
parent a9ba3ada0c
commit 4c66a31370
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class ThreadAdapter(
}
}
override fun getSelectableItemCount() = messages.size
override fun getSelectableItemCount() = messages.filter { it is Message }.size
override fun getIsItemSelectable(position: Int) = !isThreadDateTime(position)