Fix rebase

This commit is contained in:
Valere 2020-11-20 15:17:35 +01:00
parent 77863e2e88
commit 7583b0a358
2 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ class UserListFragment @Inject constructor(
}
override fun onDestroyView() {
recyclerView.cleanup()
userListRecyclerView.cleanup()
super.onDestroyView()
}
@ -115,7 +115,7 @@ class UserListFragment @Inject constructor(
private fun setupRecyclerView() {
userListController.callback = this
// Don't activate animation as we might have way to much item animation when filtering
recyclerView.configureWith(userListController, disableItemAnimation = true)
userListRecyclerView.configureWith(userListController, disableItemAnimation = true)
}
private fun setupSearchView() {

View File

@ -122,7 +122,7 @@
tools:visibility="visible" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/knownUsersRecyclerView"
android:id="@+id/userListRecyclerView"
android:layout_width="0dp"
android:layout_height="0dp"
android:fastScrollEnabled="true"