Skip to content
Snippets Groups Projects
Commit 9f50849f authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Attempt at fixing another source of crashes

parent af4d7f53
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,9 @@ class NickListFragment : ServiceBoundFragment() {
val nickListAdapter = NickListAdapter(clickListener)
nickList.adapter = nickListAdapter
nickList.layoutManager = LinearLayoutManager(context)
nickList.layoutManager = object : LinearLayoutManager(context) {
override fun supportsPredictiveItemAnimations() = false
}
nickList.itemAnimator = DefaultItemAnimator()
viewModel.nickData.map {
it.map {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment