Merge pull request #3762 from nextcloud/bugfix/3324/fixConversationInfoParticipantsList

fix to show all participants in conversation info
This commit is contained in:
Marcel Hibbe 2024-03-25 13:24:46 +01:00 committed by GitHub
commit eae88f5c0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -495,7 +495,7 @@ class ConversationInfoActivity :
val layoutManager = SmoothScrollLinearLayoutManager(this)
binding.recyclerView.layoutManager = layoutManager
binding.recyclerView.setHasFixedSize(true)
binding.recyclerView.setHasFixedSize(false)
binding.recyclerView.adapter = adapter
binding.recyclerView.isNestedScrollingEnabled = false
adapter!!.addListener(this)

View File

@ -49,7 +49,7 @@
android:indeterminateTintMode="src_in"
tools:visibility="gone" />
<ScrollView
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
@ -413,5 +413,5 @@
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
</androidx.core.widget.NestedScrollView>
</LinearLayout>