mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-06-05 21:59:17 +02:00
do not allow long pressing Event List view section labels
This commit is contained in:
@@ -85,7 +85,7 @@ class EventListAdapter(activity: SimpleActivity, var listItems: ArrayList<ListIt
|
|||||||
|
|
||||||
override fun onBindViewHolder(holder: MyRecyclerViewAdapter.ViewHolder, position: Int) {
|
override fun onBindViewHolder(holder: MyRecyclerViewAdapter.ViewHolder, position: Int) {
|
||||||
val listItem = listItems[position]
|
val listItem = listItems[position]
|
||||||
holder.bindView(listItem, true, allowLongClick) { itemView, layoutPosition ->
|
holder.bindView(listItem, true, allowLongClick && listItem is ListEvent) { itemView, layoutPosition ->
|
||||||
if (listItem is ListSection) {
|
if (listItem is ListSection) {
|
||||||
setupListSection(itemView, listItem, position)
|
setupListSection(itemView, listItem, position)
|
||||||
} else if (listItem is ListEvent) {
|
} else if (listItem is ListEvent) {
|
||||||
|
Reference in New Issue
Block a user